* [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/
@ 2020-08-26 0:32 Ronny Gutbrod
0 siblings, 0 replies; 12+ messages in thread
From: Ronny Gutbrod @ 2020-08-26 0:32 UTC (permalink / raw
To: gentoo-commits
commit: f5562813494677f1f68668eb379e7424e10cc88c
Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Wed Aug 26 00:29:51 2020 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Wed Aug 26 00:31:41 2020 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f5562813
media-video/ciano: New package.
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
media-video/ciano/Manifest | 1 +
media-video/ciano/ciano-0.2.4.ebuild | 46 ++++++++++++++++++++++++++++++++++++
media-video/ciano/metadata.xml | 17 +++++++++++++
3 files changed, 64 insertions(+)
diff --git a/media-video/ciano/Manifest b/media-video/ciano/Manifest
new file mode 100644
index 0000000..184277d
--- /dev/null
+++ b/media-video/ciano/Manifest
@@ -0,0 +1 @@
+DIST ciano-0.2.4.tar.gz 195259 BLAKE2B 3e81781372eba0d36b90604a8041afdad70b90a4ae8c96bd209094903410dbf691de25fac67c33bac8c5ace9c7ee8208c29def51b0cb1d4c89517c70541a849a SHA512 a071198b0483188685e97ed4feac991ca707cd2a3b9191cbe2166e445b60e7510691a531ed2955d8361175a2fc1dd3ff767f1405df45e635559eef8776c65b25
diff --git a/media-video/ciano/ciano-0.2.4.ebuild b/media-video/ciano/ciano-0.2.4.ebuild
new file mode 100644
index 0000000..184825f
--- /dev/null
+++ b/media-video/ciano/ciano-0.2.4.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit gnome2-utils meson vala xdg
+
+DESCRIPTION="A multimedia file converter focused on simplicity"
+HOMEPAGE="https://robertsanseries.github.io/ciano"
+SRC_URI="https://github.com/robertsanseries/ciano/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="dev-libs/granite"
+RDEPEND="
+ ${DEPEND}
+ media-video/ffmpeg
+ virtual/imagemagick-tools
+"
+
+src_prepare() {
+ vala_src_prepare
+ xdg_src_prepare
+}
+
+pkg_preinst() {
+ gnome2_schemas_savelist
+ xdg_pkg_preinst
+}
+
+src_install() {
+ meson_src_install
+ dosym com.github.robertsanseries.ciano usr/bin/ciano
+}
+
+pkg_postinst() {
+ gnome2_schemas_update
+ xdg_pkg_postinst
+}
+
+pkg_postrm() {
+ gnome2_schemas_update
+ xdg_pkg_postrm
+}
diff --git a/media-video/ciano/metadata.xml b/media-video/ciano/metadata.xml
new file mode 100644
index 0000000..5e9dfd3
--- /dev/null
+++ b/media-video/ciano/metadata.xml
@@ -0,0 +1,17 @@
+<?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>Ronny (tastytea) Gutbrod</name>
+ </maintainer>
+ <longdescription lang="en">
+ Ciano is a desktop multimedia conversion application responsible for
+ converting videos, music and images. Originally created to provide the
+ best possible experience in the elementary operating system, Ciano makes
+ use of the largest conversion tools: FFmpeg and ImageMagick.
+ </longdescription>
+ <upstream>
+ <bugs-to>https://github.com/robertsanseries/ciano/issues</bugs-to>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/
@ 2021-04-23 17:54 Ronny Gutbrod
0 siblings, 0 replies; 12+ messages in thread
From: Ronny Gutbrod @ 2021-04-23 17:54 UTC (permalink / raw
To: gentoo-commits
commit: 9ea9e2f03b225abceabc1179363640bf8ae18f2f
Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Fri Apr 23 17:43:48 2021 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Fri Apr 23 17:52:56 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9ea9e2f0
media-video/ciano: Declare Python support.
meson calls a python post-install script during build.
Closes: https://bugs.gentoo.org/785118
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
media-video/ciano/ciano-0.2.4.ebuild | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/media-video/ciano/ciano-0.2.4.ebuild b/media-video/ciano/ciano-0.2.4.ebuild
index 184825fb3..3da996b41 100644
--- a/media-video/ciano/ciano-0.2.4.ebuild
+++ b/media-video/ciano/ciano-0.2.4.ebuild
@@ -1,9 +1,10 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
-inherit gnome2-utils meson vala xdg
+PYTHON_COMPAT=( python3_{8,9} )
+inherit gnome2-utils meson python-any-r1 vala xdg
DESCRIPTION="A multimedia file converter focused on simplicity"
HOMEPAGE="https://robertsanseries.github.io/ciano"
@@ -14,6 +15,7 @@ SLOT="0"
KEYWORDS="~amd64"
DEPEND="dev-libs/granite"
+BDEPEND="${PYTHON_DEPS}"
RDEPEND="
${DEPEND}
media-video/ffmpeg
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/
@ 2021-04-23 17:54 Ronny Gutbrod
0 siblings, 0 replies; 12+ messages in thread
From: Ronny Gutbrod @ 2021-04-23 17:54 UTC (permalink / raw
To: gentoo-commits
commit: c020f8a37ef37eeffd01e6f66e8b3a085bb55a23
Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Fri Apr 23 17:54:03 2021 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Fri Apr 23 17:54:03 2021 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c020f8a3
media-video/ciano: Fix HOMEPAGE.
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
media-video/ciano/ciano-0.2.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/ciano/ciano-0.2.4.ebuild b/media-video/ciano/ciano-0.2.4.ebuild
index 3da996b41..bb822f306 100644
--- a/media-video/ciano/ciano-0.2.4.ebuild
+++ b/media-video/ciano/ciano-0.2.4.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=( python3_{8,9} )
inherit gnome2-utils meson python-any-r1 vala xdg
DESCRIPTION="A multimedia file converter focused on simplicity"
-HOMEPAGE="https://robertsanseries.github.io/ciano"
+HOMEPAGE="https://robertsanseries.github.io/ciano/"
SRC_URI="https://github.com/robertsanseries/ciano/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/
@ 2022-02-24 7:54 Anna Vyalkova
0 siblings, 0 replies; 12+ messages in thread
From: Anna Vyalkova @ 2022-02-24 7:54 UTC (permalink / raw
To: gentoo-commits
commit: ecf21c2666aa15f8679e1a62e043d51c3c29a146
Author: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
AuthorDate: Thu Feb 24 07:17:42 2022 +0000
Commit: Anna Vyalkova <cyber+gentoo <AT> sysrq <DOT> in>
CommitDate: Thu Feb 24 07:18:11 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ecf21c26
media-video/ciano: remove gnome2_schemas_savelist
Signed-off-by: Anna (cybertailor) Vyalkova <cyber+gentoo <AT> sysrq.in>
media-video/ciano/ciano-0.2.4.ebuild | 5 -----
1 file changed, 5 deletions(-)
diff --git a/media-video/ciano/ciano-0.2.4.ebuild b/media-video/ciano/ciano-0.2.4.ebuild
index bb822f306..bdce508c7 100644
--- a/media-video/ciano/ciano-0.2.4.ebuild
+++ b/media-video/ciano/ciano-0.2.4.ebuild
@@ -27,11 +27,6 @@ src_prepare() {
xdg_src_prepare
}
-pkg_preinst() {
- gnome2_schemas_savelist
- xdg_pkg_preinst
-}
-
src_install() {
meson_src_install
dosym com.github.robertsanseries.ciano usr/bin/ciano
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/
@ 2022-03-06 2:44 Alessandro Barbieri
0 siblings, 0 replies; 12+ messages in thread
From: Alessandro Barbieri @ 2022-03-06 2:44 UTC (permalink / raw
To: gentoo-commits
commit: ecf0817437adeb663d10b9a24d75f2b1d881e540
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Mar 6 02:36:37 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Mar 6 02:37:15 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ecf08174
media-video/ciano: update EAPI 7 -> 8
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
media-video/ciano/{ciano-0.2.4.ebuild => ciano-0.2.4-r1.ebuild} | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/media-video/ciano/ciano-0.2.4.ebuild b/media-video/ciano/ciano-0.2.4-r1.ebuild
similarity index 82%
rename from media-video/ciano/ciano-0.2.4.ebuild
rename to media-video/ciano/ciano-0.2.4-r1.ebuild
index bdce508c7..48c4dd3d0 100644
--- a/media-video/ciano/ciano-0.2.4.ebuild
+++ b/media-video/ciano/ciano-0.2.4-r1.ebuild
@@ -1,13 +1,14 @@
-# Copyright 2020-2021 Gentoo Authors
+# Copyright 2020-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
PYTHON_COMPAT=( python3_{8,9} )
-inherit gnome2-utils meson python-any-r1 vala xdg
+
+inherit gnome2-utils meson python-any-r1 xdg
DESCRIPTION="A multimedia file converter focused on simplicity"
-HOMEPAGE="https://robertsanseries.github.io/ciano/"
+HOMEPAGE="https://robertsanseries.github.io/ciano"
SRC_URI="https://github.com/robertsanseries/ciano/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/
@ 2022-03-06 2:47 Alessandro Barbieri
0 siblings, 0 replies; 12+ messages in thread
From: Alessandro Barbieri @ 2022-03-06 2:47 UTC (permalink / raw
To: gentoo-commits
commit: b9fa33c767c16ec1eb741a538733d827936c53f2
Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Mar 6 02:47:18 2022 +0000
Commit: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Mar 6 02:47:18 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b9fa33c7
media-video/ciano: restore vala eclass
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
media-video/ciano/ciano-0.2.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/ciano/ciano-0.2.4-r1.ebuild b/media-video/ciano/ciano-0.2.4-r1.ebuild
index 48c4dd3d0..44b6b2e0d 100644
--- a/media-video/ciano/ciano-0.2.4-r1.ebuild
+++ b/media-video/ciano/ciano-0.2.4-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=8
PYTHON_COMPAT=( python3_{8,9} )
-inherit gnome2-utils meson python-any-r1 xdg
+inherit gnome2-utils meson python-any-r1 vala xdg
DESCRIPTION="A multimedia file converter focused on simplicity"
HOMEPAGE="https://robertsanseries.github.io/ciano"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/
2022-03-07 21:21 [gentoo-commits] repo/proj/guru:master " Ronny Gutbrod
@ 2022-03-07 20:54 ` Ronny Gutbrod
0 siblings, 0 replies; 12+ messages in thread
From: Ronny Gutbrod @ 2022-03-07 20:54 UTC (permalink / raw
To: gentoo-commits
commit: 6e918f2b6f8cf0a8b3ffb61cd3a497529aac696d
Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Mon Mar 7 20:52:42 2022 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Mon Mar 7 20:52:42 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6e918f2b
media-video/ciano: Fix HOMEPAGE
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
media-video/ciano/ciano-0.2.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/ciano/ciano-0.2.4-r1.ebuild b/media-video/ciano/ciano-0.2.4-r1.ebuild
index 44b6b2e0d..a8448d4f6 100644
--- a/media-video/ciano/ciano-0.2.4-r1.ebuild
+++ b/media-video/ciano/ciano-0.2.4-r1.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{8,9} )
inherit gnome2-utils meson python-any-r1 vala xdg
DESCRIPTION="A multimedia file converter focused on simplicity"
-HOMEPAGE="https://robertsanseries.github.io/ciano"
+HOMEPAGE="https://robertsanseries.github.io/ciano/"
SRC_URI="https://github.com/robertsanseries/ciano/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/
@ 2022-03-08 8:41 Ronny Gutbrod
0 siblings, 0 replies; 12+ messages in thread
From: Ronny Gutbrod @ 2022-03-08 8:41 UTC (permalink / raw
To: gentoo-commits
commit: 35de631cca585e73febb4ba882a990239c7bdbf4
Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Tue Mar 8 08:35:33 2022 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Tue Mar 8 08:35:33 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=35de631c
media-video/ciano: Fix brokenness after EAPI bump
Closes: https://bugs.gentoo.org/834749
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
media-video/ciano/ciano-0.2.4-r1.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/media-video/ciano/ciano-0.2.4-r1.ebuild b/media-video/ciano/ciano-0.2.4-r1.ebuild
index a8448d4f6..a0297123f 100644
--- a/media-video/ciano/ciano-0.2.4-r1.ebuild
+++ b/media-video/ciano/ciano-0.2.4-r1.ebuild
@@ -24,8 +24,8 @@ RDEPEND="
"
src_prepare() {
- vala_src_prepare
- xdg_src_prepare
+ vala_setup
+ default
}
src_install() {
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/
@ 2022-05-30 12:51 Ronny Gutbrod
0 siblings, 0 replies; 12+ messages in thread
From: Ronny Gutbrod @ 2022-05-30 12:51 UTC (permalink / raw
To: gentoo-commits
commit: ba86a702f852126c7bfdff32d148377ffc9dca51
Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
AuthorDate: Mon May 30 12:46:24 2022 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Mon May 30 12:51:22 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ba86a702
media-video/ciano: enable py3.10, py3.11
Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
media-video/ciano/ciano-0.2.4-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/ciano/ciano-0.2.4-r1.ebuild b/media-video/ciano/ciano-0.2.4-r1.ebuild
index a0297123f..2e1577fe4 100644
--- a/media-video/ciano/ciano-0.2.4-r1.ebuild
+++ b/media-video/ciano/ciano-0.2.4-r1.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{8,9} )
+PYTHON_COMPAT=( python3_{8..11} )
inherit gnome2-utils meson python-any-r1 vala xdg
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/
@ 2024-05-07 18:00 Ronny Gutbrod
0 siblings, 0 replies; 12+ messages in thread
From: Ronny Gutbrod @ 2024-05-07 18:00 UTC (permalink / raw
To: gentoo-commits
commit: faae4c454d97ab7c31f0d2e089ff66d801ef32cf
Author: tastytea <gentoo <AT> tastytea <DOT> de>
AuthorDate: Tue May 7 17:57:26 2024 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Tue May 7 17:57:26 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=faae4c45
media-video/ciano: update SRC_URI, unmask python 3.12
Closes: https://bugs.gentoo.org/931459
Signed-off-by: tastytea <gentoo <AT> tastytea.de>
media-video/ciano/Manifest | 2 +-
media-video/ciano/ciano-0.2.4-r1.ebuild | 6 +++---
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/media-video/ciano/Manifest b/media-video/ciano/Manifest
index 184277d04c..b4f882bb4d 100644
--- a/media-video/ciano/Manifest
+++ b/media-video/ciano/Manifest
@@ -1 +1 @@
-DIST ciano-0.2.4.tar.gz 195259 BLAKE2B 3e81781372eba0d36b90604a8041afdad70b90a4ae8c96bd209094903410dbf691de25fac67c33bac8c5ace9c7ee8208c29def51b0cb1d4c89517c70541a849a SHA512 a071198b0483188685e97ed4feac991ca707cd2a3b9191cbe2166e445b60e7510691a531ed2955d8361175a2fc1dd3ff767f1405df45e635559eef8776c65b25
+DIST ciano-0.2.4.gh.tar.gz 195259 BLAKE2B 3e81781372eba0d36b90604a8041afdad70b90a4ae8c96bd209094903410dbf691de25fac67c33bac8c5ace9c7ee8208c29def51b0cb1d4c89517c70541a849a SHA512 a071198b0483188685e97ed4feac991ca707cd2a3b9191cbe2166e445b60e7510691a531ed2955d8361175a2fc1dd3ff767f1405df45e635559eef8776c65b25
diff --git a/media-video/ciano/ciano-0.2.4-r1.ebuild b/media-video/ciano/ciano-0.2.4-r1.ebuild
index 5671d588e2..aaf01aa207 100644
--- a/media-video/ciano/ciano-0.2.4-r1.ebuild
+++ b/media-video/ciano/ciano-0.2.4-r1.ebuild
@@ -1,15 +1,15 @@
-# Copyright 2020-2022 Gentoo Authors
+# Copyright 2020-2022,2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
inherit gnome2-utils meson python-any-r1 vala xdg
DESCRIPTION="A multimedia file converter focused on simplicity"
HOMEPAGE="https://robertsanseries.github.io/ciano/"
-SRC_URI="https://github.com/robertsanseries/ciano/archive/${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/robertsanseries/ciano/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/
@ 2024-05-27 6:02 Ronny Gutbrod
0 siblings, 0 replies; 12+ messages in thread
From: Ronny Gutbrod @ 2024-05-27 6:02 UTC (permalink / raw
To: gentoo-commits
commit: 49ec1bb41ef2ae174434427c25245c8d8bfaf68b
Author: tea <gentoo <AT> tastytea <DOT> de>
AuthorDate: Mon May 27 06:00:27 2024 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Mon May 27 06:00:27 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=49ec1bb4
media-video/ciano: drop 0.2.4-r1
Signed-off-by: tea <gentoo <AT> tastytea.de>
media-video/ciano/ciano-0.2.4-r1.ebuild | 44 ---------------------------------
1 file changed, 44 deletions(-)
diff --git a/media-video/ciano/ciano-0.2.4-r1.ebuild b/media-video/ciano/ciano-0.2.4-r1.ebuild
deleted file mode 100644
index aaf01aa20..000000000
--- a/media-video/ciano/ciano-0.2.4-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 2020-2022,2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit gnome2-utils meson python-any-r1 vala xdg
-
-DESCRIPTION="A multimedia file converter focused on simplicity"
-HOMEPAGE="https://robertsanseries.github.io/ciano/"
-SRC_URI="https://github.com/robertsanseries/ciano/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="dev-libs/granite"
-BDEPEND="${PYTHON_DEPS}"
-RDEPEND="
- ${DEPEND}
- media-video/ffmpeg
- virtual/imagemagick-tools
-"
-
-src_prepare() {
- vala_setup
- default
-}
-
-src_install() {
- meson_src_install
- dosym com.github.robertsanseries.ciano usr/bin/ciano
-}
-
-pkg_postinst() {
- gnome2_schemas_update
- xdg_pkg_postinst
-}
-
-pkg_postrm() {
- gnome2_schemas_update
- xdg_pkg_postrm
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/
@ 2024-05-27 6:02 Ronny Gutbrod
0 siblings, 0 replies; 12+ messages in thread
From: Ronny Gutbrod @ 2024-05-27 6:02 UTC (permalink / raw
To: gentoo-commits
commit: 5efa7a017ac96ebbf0bf39f1366c171102d83ad8
Author: tea <gentoo <AT> tastytea <DOT> de>
AuthorDate: Mon May 27 05:57:14 2024 +0000
Commit: Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Mon May 27 05:57:14 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5efa7a01
media-video/ciano: add runtime dependencies
Closes: https://bugs.gentoo.org/932813
Signed-off-by: tea <gentoo <AT> tastytea.de>
media-video/ciano/ciano-0.2.4-r2.ebuild | 48 +++++++++++++++++++++++++++++++++
1 file changed, 48 insertions(+)
diff --git a/media-video/ciano/ciano-0.2.4-r2.ebuild b/media-video/ciano/ciano-0.2.4-r2.ebuild
new file mode 100644
index 000000000..98a08b557
--- /dev/null
+++ b/media-video/ciano/ciano-0.2.4-r2.ebuild
@@ -0,0 +1,48 @@
+# Copyright 2020-2022,2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit gnome2-utils meson python-any-r1 vala xdg
+
+DESCRIPTION="A multimedia file converter focused on simplicity"
+HOMEPAGE="https://robertsanseries.github.io/ciano/"
+SRC_URI="https://github.com/robertsanseries/ciano/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+DEPEND="dev-libs/granite"
+BDEPEND="${PYTHON_DEPS}"
+RDEPEND="
+ ${DEPEND}
+ dev-libs/glib
+ dev-libs/libgee
+ media-video/ffmpeg
+ virtual/imagemagick-tools
+ x11-libs/gtk+:3
+ x11-libs/pango
+"
+
+src_prepare() {
+ vala_setup
+ default
+}
+
+src_install() {
+ meson_src_install
+ dosym com.github.robertsanseries.ciano usr/bin/ciano
+}
+
+pkg_postinst() {
+ gnome2_schemas_update
+ xdg_pkg_postinst
+}
+
+pkg_postrm() {
+ gnome2_schemas_update
+ xdg_pkg_postrm
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-05-27 6:03 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-05-30 12:51 [gentoo-commits] repo/proj/guru:dev commit in: media-video/ciano/ Ronny Gutbrod
-- strict thread matches above, loose matches on Subject: below --
2024-05-27 6:02 Ronny Gutbrod
2024-05-27 6:02 Ronny Gutbrod
2024-05-07 18:00 Ronny Gutbrod
2022-03-08 8:41 Ronny Gutbrod
2022-03-07 21:21 [gentoo-commits] repo/proj/guru:master " Ronny Gutbrod
2022-03-07 20:54 ` [gentoo-commits] repo/proj/guru:dev " Ronny Gutbrod
2022-03-06 2:47 Alessandro Barbieri
2022-03-06 2:44 Alessandro Barbieri
2022-02-24 7:54 Anna Vyalkova
2021-04-23 17:54 Ronny Gutbrod
2021-04-23 17:54 Ronny Gutbrod
2020-08-26 0:32 Ronny Gutbrod
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox