1
0
mirror of https://github.com/dguglielmi/sunny-overlay.git synced 2025-12-06 07:22:38 +01:00

Compare commits

..

3 Commits

22 changed files with 227 additions and 14 deletions

View File

@@ -1 +1,2 @@
DIST readpe-0.84.tar.gz 642372 BLAKE2B 59c326fad879c172c9b90964e2eb140fc4df2db3c7ee3b00324ed659fb8eb70c356036b3c601eaed6fc8e91dfc1ab29166383a5d7ded8b3d8970b601617c3f24 SHA512 facb4db30e46b05436888614302c784af543914f7aaa3c5a499352a6df71ea29c512f97304981a51f8e852a01ff95d1a3c7d885add86e8bb0c28cf805f7ed30b
DIST readpe-0.85.1.tar.gz 648014 BLAKE2B e1d07b32fcb48f69f50b5777e07ac5bc9c1e9c9abfbcf35e7165da43b81431a6a80d7336932b2969a292c41f55b1bccd4959d9e71c449b2f941347bb6fca11c7 SHA512 3877b80657a707e4cf92cae665a643f05d3b712a31cdb16c2f0fee2b3088dd96539083aec0030f4b3f8a62ea071f1f71d5eec6fe480e640e4cdd72b534072432

View File

@@ -0,0 +1,35 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Multiplatform command line toolkit to work with PE binaries"
HOMEPAGE="https://github.com/mentebinaria/readpe"
SRC_URI="
https://github.com/mentebinaria/readpe/archive/v${PV}.tar.gz
-> ${P}.tar.gz
"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="dev-libs/openssl"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${PN}-fix-manpages-compression.patch" )
src_prepare() {
sed -i \
-e '/^prefix/s#\([^=]*\).*$#\1= '"${EPREFIX}/usr"'#' \
-e '/^libdir/s#\([^=]*\).*$#\1= /usr/'$(get_libdir)'#' \
src/Makefile lib/libpe/Makefile || die
default
}
src_compile() {
emake CC="$(tc-getCC)"
}

View File

@@ -0,0 +1 @@
DIST totem-43.2.tar.xz 2552500 BLAKE2B b2bdbbe98abe0e957e260f24c30cb481da7a92ea28edb6619455cd446d28e926f35794652f17fcf51a7d7dc105d12d7cdf42d9fb84fe110a51fa1d1c746baff1 SHA512 4ed3c1a1c5c70279f5f704c98f5cf6903eaacd1fe65c209b5086106a8401d3759ccfd4fa3c43eb542df854076fd08d487e691b7bf5864d5bf6f98c50f21b8dda

View File

@@ -0,0 +1,90 @@
project(
'totem-video-thumbnailer', 'c',
version: '1.0',
license: 'GPL2+ with exception',
default_options: 'buildtype=debugoptimized',
meson_version: '>= 0.50.0'
)
totem_prefix = get_option('prefix')
totem_bindir = join_paths(totem_prefix, get_option('bindir'))
totem_datadir = join_paths(totem_prefix, get_option('datadir'))
totem_localedir = join_paths(totem_prefix, get_option('localedir'))
gst_req_version = '>= 1.6.0'
totem_plparser_req_version = '>= 3.10.1'
gio_dep = dependency('gio-2.0', version: '>= 2.43.4')
gdk_pixbuf_dep = dependency('gdk-pixbuf-2.0')
gst_dep = dependency('gstreamer-1.0', version: gst_req_version)
gst_tag_dep = dependency('gstreamer-tag-1.0', version: '>= 0.11.93')
gst_video_dep = dependency('gstreamer-video-1.0')
totem_plparser_dep = dependency('totem-plparser', version: totem_plparser_req_version)
cc = meson.get_compiler('c')
m_dep = cc.find_library('m', required: true)
config_h = configuration_data()
set_defines = [
['GETTEXT_PACKAGE', meson.project_name()],
['GNOMELOCALEDIR', totem_localedir],
]
foreach define: set_defines
config_h.set_quoted(define[0], define[1])
endforeach
configure_file(
output: 'config.h',
configuration: config_h
)
totem_video_thumbnailer_sources = files(
'submodules/totem/src/totem-resources.c',
'submodules/totem/src/totem-video-thumbnailer.c',
'submodules/totem/src/gst/totem-gst-helpers.c',
'submodules/totem/src/gst/totem-gst-pixbuf-helpers.c'
)
totem_video_thumbnailer_deps = [
gio_dep,
gdk_pixbuf_dep,
totem_plparser_dep,
gst_tag_dep,
gst_video_dep,
m_dep,
]
executable(
'totem-video-thumbnailer',
totem_video_thumbnailer_sources,
include_directories: [
include_directories('submodules/totem/src/'),
include_directories('submodules/totem/src/gst'),
],
dependencies: totem_video_thumbnailer_deps,
c_args: [
'-DG_LOG_DOMAIN="TotemVideoThumbnailer"'
],
install: true,
install_dir: totem_bindir
)
thumbnailer_sh = find_program('submodules/totem/data/thumbnailer.sh')
mime_type_list = files('submodules/totem/data/mime-type-list.txt')
r = run_command([thumbnailer_sh, mime_type_list], check: true)
thumbnailer_conf = configuration_data()
thumbnailer_conf.set('BINDIR', totem_bindir)
thumbnailer_conf.set('MIME_TYPE', r.stdout().strip())
thumbnailer = 'totem.thumbnailer'
configure_file(
input: 'submodules/totem/data/' + thumbnailer + '.in',
output: thumbnailer,
install: true,
install_dir: join_paths(totem_datadir, 'thumbnailers'),
configuration: thumbnailer_conf
)

View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>david.guglielmi@gmail.com</email>
<name>David GUGLIELMI</name>
</maintainer>
<upstream>
<remote-id type="gnome-gitlab">GNOME/totem-video-thumbnailer</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,48 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit meson
DESCRIPTION="GNOME Video thumbnailer"
HOMEPAGE="https://gitlab.gnome.org/GNOME/totem-video-thumbnailer/"
SRC_URI="https://download.gnome.org/sources/totem/${PV::2}/totem-${PV}.tar.xz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
COMMON_DEPEND="
!media-video/totem
>=dev-libs/glib-2.72.0:2
>=media-libs/gstreamer-1.21.1:1.0
>=dev-libs/totem-pl-parser-3.26.5
x11-libs/gdk-pixbuf:2
"
RDEPEND="${COMMON_DEPEND}
>=media-plugins/gst-plugins-meta-1.21.1:1.0
>=media-plugins/gst-plugins-taglib-1.21.1:1.0
"
DEPEND="${COMMON_DEPEND}"
BDEPEND="
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
"
src_unpack() {
mkdir -p "${S}"/submodules || die
cp "${FILESDIR}"/meson.build "${S}/" || die
default
}
src_prepare() {
ln -s "${WORKDIR}"/totem-${PV} "${S}"/submodules/totem || die
default
}

View File

@@ -11,5 +11,5 @@ RDEPEND=python_single_target_python3_11? ( dev-lang/python:3.11 ) python_single_
REQUIRED_USE=^^ ( python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 )
SLOT=0
SRC_URI=https://github.com/zrax/pycdc/archive/6467c2cc52aa714876e131a1b6c6cf25f129460f.tar.gz -> decompyle++-0_p20240312.tar.gz
_eclasses_=cmake 460729dc36f68cf03b044bc1d367e34a flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
_eclasses_=cmake 460729dc36f68cf03b044bc1d367e34a flag-o-matic a7afe42e95fb46ce9691605acfb24672 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 0b620dd604ab8af0bc9cd1bcc66d4f7c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
_md5_=5028e7c7c87903066d22eef668361c68

View File

@@ -0,0 +1,13 @@
DEFINED_PHASES=compile prepare
DEPEND=dev-libs/openssl
DESCRIPTION=Multiplatform command line toolkit to work with PE binaries
EAPI=8
HOMEPAGE=https://github.com/mentebinaria/readpe
INHERIT=toolchain-funcs
KEYWORDS=~amd64
LICENSE=GPL-2
RDEPEND=dev-libs/openssl
SLOT=0
SRC_URI=https://github.com/mentebinaria/readpe/archive/v0.85.1.tar.gz -> readpe-0.85.1.tar.gz
_eclasses_=toolchain-funcs a0b29008c671a362b505f96fa80ce9c0
_md5_=5b23963986a043ae293e92ffa6cb157f

File diff suppressed because one or more lines are too long

View File

@@ -12,5 +12,5 @@ RDEPEND=dev-libs/libyaml:= || ( dev-libs/openssl net-libs/gnutls ) app? ( dev-li
REQUIRED_USE=^^ ( python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 )
SLOT=0
SRC_URI=https://gitlab.freedesktop.org/camera/libcamera/-/archive/v0.4.0/libcamera-v0.4.0.tar.bz2
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 meson 99466844dd8d4fcfb07578a76f5a9922 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 meson 99466844dd8d4fcfb07578a76f5a9922 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 0b620dd604ab8af0bc9cd1bcc66d4f7c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0
_md5_=44a8e480f9edec9c1a906d3b17609f4a

View File

@@ -12,5 +12,5 @@ RDEPEND=dev-libs/libyaml:= || ( dev-libs/openssl net-libs/gnutls ) app? ( dev-li
REQUIRED_USE=^^ ( python_single_target_python3_11 python_single_target_python3_12 python_single_target_python3_13 )
SLOT=0
SRC_URI=https://gitlab.freedesktop.org/camera/libcamera/-/archive/v0.5.0/libcamera-v0.5.0.tar.bz2
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 meson 99466844dd8d4fcfb07578a76f5a9922 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 meson 99466844dd8d4fcfb07578a76f5a9922 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-single-r1 47d8ac9be330c9366112b78fd4f8ce57 python-utils-r1 0b620dd604ab8af0bc9cd1bcc66d4f7c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0
_md5_=e5b3326e4ddbf0262432998a28ded911

View File

@@ -12,5 +12,5 @@ RDEPEND=>=dev-libs/glib-2.76.0 >=media-libs/gstreamer-1.24.0:= >=gui-libs/gtk-4.
REQUIRED_USE=doc? ( introspection )
SLOT=0
SRC_URI=https://github.com/Rafostar/clapper/archive/0.8.0.tar.gz -> clapper-0.8.0.tar.gz
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 99466844dd8d4fcfb07578a76f5a9922 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 vala e477903dbe0105930c51f170a592dc16 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 99466844dd8d4fcfb07578a76f5a9922 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 0b620dd604ab8af0bc9cd1bcc66d4f7c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 vala e477903dbe0105930c51f170a592dc16 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
_md5_=14121bd26a7df99057bfdab0edb349d6

View File

@@ -0,0 +1,14 @@
BDEPEND=>=sys-devel/gettext-0.19.8 virtual/pkgconfig >=dev-build/meson-1.2.3 app-alternatives/ninja dev-build/meson-format-array
DEFINED_PHASES=compile configure install prepare test unpack
DEPEND=!media-video/totem >=dev-libs/glib-2.72.0:2 >=media-libs/gstreamer-1.21.1:1.0 >=dev-libs/totem-pl-parser-3.26.5 x11-libs/gdk-pixbuf:2
DESCRIPTION=GNOME Video thumbnailer
EAPI=8
HOMEPAGE=https://gitlab.gnome.org/GNOME/totem-video-thumbnailer/
INHERIT=meson
KEYWORDS=~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86
LICENSE=GPL-2+
RDEPEND=!media-video/totem >=dev-libs/glib-2.72.0:2 >=media-libs/gstreamer-1.21.1:1.0 >=dev-libs/totem-pl-parser-3.26.5 x11-libs/gdk-pixbuf:2 >=media-plugins/gst-plugins-meta-1.21.1:1.0 >=media-plugins/gst-plugins-taglib-1.21.1:1.0
SLOT=0
SRC_URI=https://download.gnome.org/sources/totem/43/totem-43.2.tar.xz
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 meson 99466844dd8d4fcfb07578a76f5a9922 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 0b620dd604ab8af0bc9cd1bcc66d4f7c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0
_md5_=bad4b3533d0d8e5a1620762a9cf11ffa

File diff suppressed because one or more lines are too long

View File

@@ -12,5 +12,5 @@ RDEPEND=geoip? ( dev-libs/geoip ) geoip2? ( dev-libs/libmaxminddb:= ) !!net-misc
REQUIRED_USE=?? ( geoip geoip2 )
SLOT=0
SRC_URI=https://gitlab.com/ipcalc/ipcalc/-/archive/1.0.3/ipcalc-1.0.3.tar.bz2 -> ipcalc-ng-1.0.3.tar.bz2
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 meson 99466844dd8d4fcfb07578a76f5a9922 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 meson 99466844dd8d4fcfb07578a76f5a9922 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 0b620dd604ab8af0bc9cd1bcc66d4f7c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0
_md5_=286efd4b840c4f59f1298d5ceaf61df4

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -12,5 +12,5 @@ RDEPEND=>=gui-libs/libadwaita-1.1 >=app-crypt/gcr-3.90.0:4 >=x11-libs/gdk-pixbuf
REQUIRED_USE=gnome? ( introspection ) vala? ( introspection )
SLOT=0
SRC_URI=https://github.com/Keruspe/GPaste/archive/v45.2.tar.gz -> gpaste-45.2.tar.gz
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 99466844dd8d4fcfb07578a76f5a9922 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 vala e477903dbe0105930c51f170a592dc16 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 99466844dd8d4fcfb07578a76f5a9922 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 0b620dd604ab8af0bc9cd1bcc66d4f7c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 vala e477903dbe0105930c51f170a592dc16 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
_md5_=587ae51a1197de2663e119a601731638

View File

@@ -12,5 +12,5 @@ RDEPEND=>=gui-libs/libadwaita-1.1 >=app-crypt/gcr-3.90.0:4 >=x11-libs/gdk-pixbuf
REQUIRED_USE=gnome? ( introspection ) vala? ( introspection )
SLOT=0
SRC_URI=https://github.com/Keruspe/GPaste/archive/v45.3.tar.gz -> gpaste-45.3.tar.gz
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 99466844dd8d4fcfb07578a76f5a9922 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 b7eb9c3a6dc6662368634584aab44a2c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 vala e477903dbe0105930c51f170a592dc16 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
_eclasses_=flag-o-matic a7afe42e95fb46ce9691605acfb24672 gnome2-utils a8cf148ec7f5ae0b1f1d33ae5f7f9e88 meson 99466844dd8d4fcfb07578a76f5a9922 multiprocessing 1e32df7deee68372153dca65f4a7c21f ninja-utils 2df4e452cea39a9ec8fb543ce059f8d6 python-utils-r1 0b620dd604ab8af0bc9cd1bcc66d4f7c toolchain-funcs a0b29008c671a362b505f96fa80ce9c0 vala e477903dbe0105930c51f170a592dc16 xdg-utils 42869b3c8d86a70ef3cf75165a395e09
_md5_=587ae51a1197de2663e119a601731638