mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-18 03:23:20 -04:00
Merge updates from master
This commit is contained in:
@@ -1,2 +0,0 @@
|
||||
DIST tiramisu-1.0_p20201110.tar.gz 3063380 BLAKE2B 52b8f46478323b401dd5db96a531c86271b38d61991ee9147ccef400f2563fadacc92a289ef6ea2ccc01507cb1af57f0186a1690d39a421dcccb5d1f73ca3825 SHA512 7f8c978e6ead387fc9ccfb9eb15c73f237e10b14c8eb53e537a869402897e89451af371eabdf76506b9fcf51d6080b21d97863978de5e5e43af2b25578535b1d
|
||||
DIST tiramisu-2.0.20211107.tar.gz 3061582 BLAKE2B d6ce0e96e7c41223d08c1581377d83c402cee495497c5ddc7aaf152dc569c6ea65ca602c3c06784e92509a64d2312ad8393a2312ac4acc522f209aae42d55c1c SHA512 ac205467e7e4bec1768040455902bed0bb545f8550d8d22c3ed94fec13cee04409bf1f3e49bd3136cd4f36d312fc553e950ce66eaeb20b4ba0ee7fb3160409fc
|
||||
@@ -1,29 +0,0 @@
|
||||
diff --git a/Makefile b/Makefile
|
||||
index 7660c8b..f009f4c 100644
|
||||
--- a/Makefile
|
||||
+++ b/Makefile
|
||||
@@ -1,14 +1,15 @@
|
||||
-TARGET = tiramisu
|
||||
-SRC := src/notification.vala src/dbus.vala src/tiramisu.vala
|
||||
+TARGET = tiramisu
|
||||
+SRC := src/notification.vala src/dbus.vala src/tiramisu.vala
|
||||
|
||||
-PREFIX ?= /usr/local
|
||||
-INSTALL = install -Dm755
|
||||
-RM ?= rm -f
|
||||
+PREFIX ?= /usr/local
|
||||
+INSTALL = install -Dm755
|
||||
+RM ?= rm -f
|
||||
+PKG_CONFIG ?= pkg-config
|
||||
|
||||
-VALAC ?= valac
|
||||
-CFLAGS += -Wall -Wno-unused-value
|
||||
-IFLAGS = --pkg gio-2.0
|
||||
-LFLAGS = `pkg-config --libs glib-2.0 gio-2.0`
|
||||
+VALAC ?= valac
|
||||
+CFLAGS += -Wall -Wno-unused-value
|
||||
+IFLAGS = --pkg gio-2.0
|
||||
+LFLAGS = `$(PKG_CONFIG) --libs glib-2.0 gio-2.0`
|
||||
|
||||
all: $(TARGET)
|
||||
|
||||
@@ -1,11 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<name>Aisha Tammy</name>
|
||||
<email>gentoo@aisha.cc</email>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">Sweets/tiramisu</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1,34 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit toolchain-funcs
|
||||
|
||||
DESCRIPTION="minimalistic desktop notifications provider"
|
||||
HOMEPAGE="https://github.com/Sweets/tiramisu"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/Sweets/tiramisu"
|
||||
else
|
||||
COMMIT="8eb946dae0e2f98d3850d89e1bb535640e8c3266"
|
||||
SRC_URI="https://github.com/Sweets/tiramisu/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${COMMIT}"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
RDEPEND="dev-libs/glib:2[dbus]"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_configure() {
|
||||
tc-export CC
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${ED}" PREFIX=/usr install
|
||||
}
|
||||
@@ -1,35 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
inherit vala
|
||||
|
||||
DESCRIPTION="minimalistic desktop notifications provider"
|
||||
HOMEPAGE="https://github.com/Sweets/tiramisu"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/Sweets/tiramisu"
|
||||
else
|
||||
SRC_URI="https://github.com/Sweets/tiramisu/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
RDEPEND="dev-libs/glib:2[dbus]"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="$(vala_depend)"
|
||||
|
||||
PATCHES=( "${FILESDIR}/tiramisu-2.0.20211107-pkg-config.patch" )
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
vala_src_prepare
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${ED}" PREFIX=/usr install
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit vala
|
||||
|
||||
DESCRIPTION="minimalistic desktop notifications provider"
|
||||
HOMEPAGE="https://github.com/Sweets/tiramisu"
|
||||
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/Sweets/tiramisu"
|
||||
else
|
||||
SRC_URI="https://github.com/Sweets/tiramisu/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
fi
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
RDEPEND="dev-libs/glib:2[dbus]"
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="$(vala_depend)"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
vala_setup
|
||||
}
|
||||
|
||||
src_install() {
|
||||
emake DESTDIR="${ED}" PREFIX=/usr install
|
||||
}
|
||||
@@ -55,11 +55,6 @@ sys-fs/ddrescueview
|
||||
# Depends on removed pydantic version.
|
||||
dev-python/safety-schemas
|
||||
|
||||
# David (stkw0) Roman <davidroman96@gmail.com> (2025-07-11)
|
||||
# Almost not maintained, fails to compile (bug #921934)
|
||||
# Removal on 2025-08-11
|
||||
gui-apps/tiramisu
|
||||
|
||||
# Anna (cybertailor) Vyalkova <cyber+gentoo@sysrq.in> (2025-05-24)
|
||||
# Depends on masked net-libs/stem.
|
||||
# Masked until upstream supports running without stem.
|
||||
|
||||
Reference in New Issue
Block a user