Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: tiramisu-2.0
@ 2021-10-19 20:26 Vapourium
  2021-10-20  1:30 ` [PR PATCH] [Updated] " Vapourium
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Vapourium @ 2021-10-19 20:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1653 bytes --]

There is a new pull request by Vapourium against master on the void-packages repository

https://github.com/Vapourium/void-packages Tiramisu
https://github.com/void-linux/void-packages/pull/33642

New package: tiramisu-2.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Sorry for the spam, but I've had mishaps on the last 2 PRs.

A patch file from https://github.com/void-linux/void-packages/pull/33642.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-Tiramisu-33642.patch --]
[-- Type: text/x-diff, Size: 2391 bytes --]

From 9e428c528f1f8818f5a11fbb6bb03c560d081dcb Mon Sep 17 00:00:00 2001
From: Vapourium <vapourium@riseup.net>
Date: Tue, 19 Oct 2021 16:24:40 -0400
Subject: [PATCH] New package: tiramisu-2.0

---
 srcpkgs/tiramisu/patches/fix-makefile.patch | 34 +++++++++++++++++++++
 srcpkgs/tiramisu/template                   | 19 ++++++++++++
 2 files changed, 53 insertions(+)
 create mode 100644 srcpkgs/tiramisu/patches/fix-makefile.patch
 create mode 100644 srcpkgs/tiramisu/template

diff --git a/srcpkgs/tiramisu/patches/fix-makefile.patch b/srcpkgs/tiramisu/patches/fix-makefile.patch
new file mode 100644
index 000000000000..943570477101
--- /dev/null
+++ b/srcpkgs/tiramisu/patches/fix-makefile.patch
@@ -0,0 +1,34 @@
+diff --git a/Makefile b/Makefile
+index 478a67f..7660c8b 100644
+--- a/Makefile
++++ b/Makefile
+@@ -1,19 +1,19 @@
+-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
+ 
+-CC		= 	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)
+ 
+ $(TARGET): $(SRC)
+-	$(CC) $(IFLAGS) $(SRC) -d ./build -o $(TARGET)
++	$(VALAC) $(IFLAGS) $(SRC) -o $(TARGET)
+ #	$(CC) $(CFLAGS) $(IFLAGS) $(SRC) $(LFLAGS) $(LDFLAGS) -o $(TARGET)
+ 
+ install: $(TARGET)
diff --git a/srcpkgs/tiramisu/template b/srcpkgs/tiramisu/template
new file mode 100644
index 000000000000..7df6697c8f0d
--- /dev/null
+++ b/srcpkgs/tiramisu/template
@@ -0,0 +1,19 @@
+# Template file for 'tiramisu'
+pkgname=tiramisu
+version=2.0
+revision=1
+build_style=gnu-makefile
+make_use_env=yes
+hostmakedepends="pkg-config glib-devel vala"
+makedepends="libglib-devel"
+checkdepends="dbus"
+short_desc="Desktop notifications, the UNIX way"
+maintainer="Vapourium <vapourium@riseup.net>"
+license="MIT"
+homepage="https://github.com/Sweets/tiramisu"
+distfiles="https://github.com/Sweets/tiramisu/archive/refs/tags/${version}.tar.gz"
+checksum=aca93f6c0db5633e0fc5ccf5e90cfac37c375646815837159263060bd1a43da1
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: tiramisu-2.0
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
@ 2021-10-20  1:30 ` Vapourium
  2021-10-20 11:43 ` [PR PATCH] [Updated] New package: tiramisu-20211019 Vapourium
                   ` (13 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Vapourium @ 2021-10-20  1:30 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1658 bytes --]

There is an updated pull request by Vapourium against master on the void-packages repository

https://github.com/Vapourium/void-packages Tiramisu
https://github.com/void-linux/void-packages/pull/33642

New package: tiramisu-2.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Sorry for the spam, but I've had mishaps on the last 2 PRs.

A patch file from https://github.com/void-linux/void-packages/pull/33642.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-Tiramisu-33642.patch --]
[-- Type: text/x-diff, Size: 1139 bytes --]

From 437c51c9343f1f4dd81669f98503e14e0aa4f4a4 Mon Sep 17 00:00:00 2001
From: Vapourium <vapourium@riseup.net>
Date: Tue, 19 Oct 2021 16:24:40 -0400
Subject: [PATCH] New package: tiramisu-20211019

---
 srcpkgs/tiramisu/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/tiramisu/template

diff --git a/srcpkgs/tiramisu/template b/srcpkgs/tiramisu/template
new file mode 100644
index 000000000000..555ef2773d85
--- /dev/null
+++ b/srcpkgs/tiramisu/template
@@ -0,0 +1,20 @@
+# Template file for 'tiramisu'
+pkgname=tiramisu
+version=20211019
+revision=1
+wrksrc=${pkgname}-2.0-${version}
+build_style=gnu-makefile
+make_use_env=yes
+hostmakedepends="pkg-config glib-devel vala"
+# makedepends="libglib-devel"
+checkdepends="dbus"
+short_desc="Desktop notifications, the UNIX way"
+maintainer="Vapourium <vapourium@riseup.net>"
+license="MIT"
+homepage="https://github.com/Sweets/tiramisu"
+distfiles="https://github.com/Sweets/tiramisu/archive/refs/tags/2.0-${version}.tar.gz"
+checksum=10f0e435e8b5d69595ff6813dbf0ec8ba85efe4541a36e969c6209ea136af7fa
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: tiramisu-20211019
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
  2021-10-20  1:30 ` [PR PATCH] [Updated] " Vapourium
@ 2021-10-20 11:43 ` Vapourium
  2021-11-07 19:07 ` Vapourium
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Vapourium @ 2021-10-20 11:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1663 bytes --]

There is an updated pull request by Vapourium against master on the void-packages repository

https://github.com/Vapourium/void-packages Tiramisu
https://github.com/void-linux/void-packages/pull/33642

New package: tiramisu-20211019
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Sorry for the spam, but I've had mishaps on the last 2 PRs.

A patch file from https://github.com/void-linux/void-packages/pull/33642.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-Tiramisu-33642.patch --]
[-- Type: text/x-diff, Size: 1137 bytes --]

From 2e04f8929f082cf708bebab0352a8357912d7ede Mon Sep 17 00:00:00 2001
From: Vapourium <vapourium@riseup.net>
Date: Tue, 19 Oct 2021 16:24:40 -0400
Subject: [PATCH] New package: tiramisu-20211019

---
 srcpkgs/tiramisu/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/tiramisu/template

diff --git a/srcpkgs/tiramisu/template b/srcpkgs/tiramisu/template
new file mode 100644
index 000000000000..9c8755154f6d
--- /dev/null
+++ b/srcpkgs/tiramisu/template
@@ -0,0 +1,20 @@
+# Template file for 'tiramisu'
+pkgname=tiramisu
+version=20211019
+revision=1
+wrksrc=${pkgname}-2.0-${version}
+build_style=gnu-makefile
+make_use_env=yes
+hostmakedepends="pkg-config glib-devel vala"
+makedepends="libglib-devel"
+checkdepends="dbus"
+short_desc="Desktop notifications, the UNIX way"
+maintainer="Vapourium <vapourium@riseup.net>"
+license="MIT"
+homepage="https://github.com/Sweets/tiramisu"
+distfiles="https://github.com/Sweets/tiramisu/archive/refs/tags/2.0-${version}.tar.gz"
+checksum=10f0e435e8b5d69595ff6813dbf0ec8ba85efe4541a36e969c6209ea136af7fa
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: tiramisu-20211019
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
  2021-10-20  1:30 ` [PR PATCH] [Updated] " Vapourium
  2021-10-20 11:43 ` [PR PATCH] [Updated] New package: tiramisu-20211019 Vapourium
@ 2021-11-07 19:07 ` Vapourium
  2021-11-07 19:09 ` [PR PATCH] [Updated] New package: tiramisu-20211107 Vapourium
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Vapourium @ 2021-11-07 19:07 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1663 bytes --]

There is an updated pull request by Vapourium against master on the void-packages repository

https://github.com/Vapourium/void-packages Tiramisu
https://github.com/void-linux/void-packages/pull/33642

New package: tiramisu-20211019
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Sorry for the spam, but I've had mishaps on the last 2 PRs.

A patch file from https://github.com/void-linux/void-packages/pull/33642.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-Tiramisu-33642.patch --]
[-- Type: text/x-diff, Size: 1137 bytes --]

From cc8740ee0b039da04a7adb55363754ac4c700805 Mon Sep 17 00:00:00 2001
From: Vapourium <vapourium@riseup.net>
Date: Tue, 19 Oct 2021 16:24:40 -0400
Subject: [PATCH] New package: tiramisu-20211107

---
 srcpkgs/tiramisu/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/tiramisu/template

diff --git a/srcpkgs/tiramisu/template b/srcpkgs/tiramisu/template
new file mode 100644
index 000000000000..9c8755154f6d
--- /dev/null
+++ b/srcpkgs/tiramisu/template
@@ -0,0 +1,20 @@
+# Template file for 'tiramisu'
+pkgname=tiramisu
+version=20211019
+revision=1
+wrksrc=${pkgname}-2.0-${version}
+build_style=gnu-makefile
+make_use_env=yes
+hostmakedepends="pkg-config glib-devel vala"
+makedepends="libglib-devel"
+checkdepends="dbus"
+short_desc="Desktop notifications, the UNIX way"
+maintainer="Vapourium <vapourium@riseup.net>"
+license="MIT"
+homepage="https://github.com/Sweets/tiramisu"
+distfiles="https://github.com/Sweets/tiramisu/archive/refs/tags/2.0-${version}.tar.gz"
+checksum=10f0e435e8b5d69595ff6813dbf0ec8ba85efe4541a36e969c6209ea136af7fa
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: tiramisu-20211107
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
                   ` (2 preceding siblings ...)
  2021-11-07 19:07 ` Vapourium
@ 2021-11-07 19:09 ` Vapourium
  2021-11-07 19:11 ` Vapourium
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Vapourium @ 2021-11-07 19:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1663 bytes --]

There is an updated pull request by Vapourium against master on the void-packages repository

https://github.com/Vapourium/void-packages Tiramisu
https://github.com/void-linux/void-packages/pull/33642

New package: tiramisu-20211107
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Sorry for the spam, but I've had mishaps on the last 2 PRs.

A patch file from https://github.com/void-linux/void-packages/pull/33642.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-Tiramisu-33642.patch --]
[-- Type: text/x-diff, Size: 1137 bytes --]

From 98054bf83c84cef592577dec7677438ebb265009 Mon Sep 17 00:00:00 2001
From: Vapourium <vapourium@riseup.net>
Date: Tue, 19 Oct 2021 16:24:40 -0400
Subject: [PATCH] New package: tiramisu-20211107

---
 srcpkgs/tiramisu/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/tiramisu/template

diff --git a/srcpkgs/tiramisu/template b/srcpkgs/tiramisu/template
new file mode 100644
index 000000000000..eb8a23b3ddd6
--- /dev/null
+++ b/srcpkgs/tiramisu/template
@@ -0,0 +1,20 @@
+# Template file for 'tiramisu'
+pkgname=tiramisu
+version=20211107
+revision=1
+wrksrc=${pkgname}-2.0.${version}
+build_style=gnu-makefile
+make_use_env=yes
+hostmakedepends="pkg-config glib-devel vala"
+makedepends="libglib-devel"
+checkdepends="dbus"
+short_desc="Desktop notifications, the UNIX way"
+maintainer="Vapourium <vapourium@riseup.net>"
+license="MIT"
+homepage="https://github.com/Sweets/tiramisu"
+distfiles="https://github.com/Sweets/tiramisu/archive/refs/tags/2.0.${version}.tar.gz"
+checksum=966b74b95401d92592d42bfded1cc2c6925ddf6bc487ccb628df58ac459fc45b
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: tiramisu-20211107
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
                   ` (3 preceding siblings ...)
  2021-11-07 19:09 ` [PR PATCH] [Updated] New package: tiramisu-20211107 Vapourium
@ 2021-11-07 19:11 ` Vapourium
  2021-11-07 19:26 ` [PR REVIEW] " paper42
                   ` (9 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Vapourium @ 2021-11-07 19:11 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1663 bytes --]

There is an updated pull request by Vapourium against master on the void-packages repository

https://github.com/Vapourium/void-packages Tiramisu
https://github.com/void-linux/void-packages/pull/33642

New package: tiramisu-20211107
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Sorry for the spam, but I've had mishaps on the last 2 PRs.

A patch file from https://github.com/void-linux/void-packages/pull/33642.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-Tiramisu-33642.patch --]
[-- Type: text/x-diff, Size: 1137 bytes --]

From 639ebde94dd76f71d5e907cb2707546f685f68d4 Mon Sep 17 00:00:00 2001
From: Vapourium <vapourium@riseup.net>
Date: Tue, 19 Oct 2021 16:24:40 -0400
Subject: [PATCH] New package: tiramisu-20211107

---
 srcpkgs/tiramisu/template | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)
 create mode 100644 srcpkgs/tiramisu/template

diff --git a/srcpkgs/tiramisu/template b/srcpkgs/tiramisu/template
new file mode 100644
index 000000000000..eb8a23b3ddd6
--- /dev/null
+++ b/srcpkgs/tiramisu/template
@@ -0,0 +1,20 @@
+# Template file for 'tiramisu'
+pkgname=tiramisu
+version=20211107
+revision=1
+wrksrc=${pkgname}-2.0.${version}
+build_style=gnu-makefile
+make_use_env=yes
+hostmakedepends="pkg-config glib-devel vala"
+makedepends="libglib-devel"
+checkdepends="dbus"
+short_desc="Desktop notifications, the UNIX way"
+maintainer="Vapourium <vapourium@riseup.net>"
+license="MIT"
+homepage="https://github.com/Sweets/tiramisu"
+distfiles="https://github.com/Sweets/tiramisu/archive/refs/tags/2.0.${version}.tar.gz"
+checksum=966b74b95401d92592d42bfded1cc2c6925ddf6bc487ccb628df58ac459fc45b
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: tiramisu-20211107
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
                   ` (4 preceding siblings ...)
  2021-11-07 19:11 ` Vapourium
@ 2021-11-07 19:26 ` paper42
  2021-11-07 20:04 ` Vapourium
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: paper42 @ 2021-11-07 19:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 187 bytes --]

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/33642#discussion_r744304255

Comment:
```suggestion
version=2.0.20211107
```

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: tiramisu-20211107
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
                   ` (5 preceding siblings ...)
  2021-11-07 19:26 ` [PR REVIEW] " paper42
@ 2021-11-07 20:04 ` Vapourium
  2021-11-07 20:05 ` [PR PATCH] [Updated] " Vapourium
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Vapourium @ 2021-11-07 20:04 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 268 bytes --]

New review comment by Vapourium on void-packages repository

https://github.com/void-linux/void-packages/pull/33642#discussion_r744309022

Comment:
Oh right, forgot about that. I only used the workaround because originally, tiramisu had a dash in the tagged releases.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: tiramisu-20211107
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
                   ` (6 preceding siblings ...)
  2021-11-07 20:04 ` Vapourium
@ 2021-11-07 20:05 ` Vapourium
  2021-11-07 20:06 ` Vapourium
                   ` (6 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Vapourium @ 2021-11-07 20:05 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1663 bytes --]

There is an updated pull request by Vapourium against master on the void-packages repository

https://github.com/Vapourium/void-packages Tiramisu
https://github.com/void-linux/void-packages/pull/33642

New package: tiramisu-20211107
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Sorry for the spam, but I've had mishaps on the last 2 PRs.

A patch file from https://github.com/void-linux/void-packages/pull/33642.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-Tiramisu-33642.patch --]
[-- Type: text/x-diff, Size: 1102 bytes --]

From 47f50be123f4b626a85027e506daeeec426bd7eb Mon Sep 17 00:00:00 2001
From: Vapourium <vapourium@riseup.net>
Date: Tue, 19 Oct 2021 16:24:40 -0400
Subject: [PATCH] New package: tiramisu-20211107

---
 srcpkgs/tiramisu/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/tiramisu/template

diff --git a/srcpkgs/tiramisu/template b/srcpkgs/tiramisu/template
new file mode 100644
index 000000000000..3e8df57f049e
--- /dev/null
+++ b/srcpkgs/tiramisu/template
@@ -0,0 +1,19 @@
+# Template file for 'tiramisu'
+pkgname=tiramisu
+version=2.0.20211107
+revision=2
+build_style=gnu-makefile
+make_use_env=yes
+hostmakedepends="pkg-config glib-devel vala"
+makedepends="libglib-devel"
+checkdepends="dbus"
+short_desc="Desktop notifications, the UNIX way"
+maintainer="Vapourium <vapourium@riseup.net>"
+license="MIT"
+homepage="https://github.com/Sweets/tiramisu"
+distfiles="https://github.com/Sweets/tiramisu/archive/refs/tags/${version}.tar.gz"
+checksum=966b74b95401d92592d42bfded1cc2c6925ddf6bc487ccb628df58ac459fc45b
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: tiramisu-20211107
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
                   ` (7 preceding siblings ...)
  2021-11-07 20:05 ` [PR PATCH] [Updated] " Vapourium
@ 2021-11-07 20:06 ` Vapourium
  2021-11-07 21:13 ` [PR REVIEW] New package: tiramisu-2.0.20211107 paper42
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Vapourium @ 2021-11-07 20:06 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1663 bytes --]

There is an updated pull request by Vapourium against master on the void-packages repository

https://github.com/Vapourium/void-packages Tiramisu
https://github.com/void-linux/void-packages/pull/33642

New package: tiramisu-20211107
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Sorry for the spam, but I've had mishaps on the last 2 PRs.

A patch file from https://github.com/void-linux/void-packages/pull/33642.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-Tiramisu-33642.patch --]
[-- Type: text/x-diff, Size: 1102 bytes --]

From 53f95a773e394d84c30ce27a79ec667f67943401 Mon Sep 17 00:00:00 2001
From: Vapourium <vapourium@riseup.net>
Date: Tue, 19 Oct 2021 16:24:40 -0400
Subject: [PATCH] New package: tiramisu-20211107

---
 srcpkgs/tiramisu/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/tiramisu/template

diff --git a/srcpkgs/tiramisu/template b/srcpkgs/tiramisu/template
new file mode 100644
index 000000000000..98777f312c37
--- /dev/null
+++ b/srcpkgs/tiramisu/template
@@ -0,0 +1,19 @@
+# Template file for 'tiramisu'
+pkgname=tiramisu
+version=2.0.20211107
+revision=1
+build_style=gnu-makefile
+make_use_env=yes
+hostmakedepends="pkg-config glib-devel vala"
+makedepends="libglib-devel"
+checkdepends="dbus"
+short_desc="Desktop notifications, the UNIX way"
+maintainer="Vapourium <vapourium@riseup.net>"
+license="MIT"
+homepage="https://github.com/Sweets/tiramisu"
+distfiles="https://github.com/Sweets/tiramisu/archive/refs/tags/${version}.tar.gz"
+checksum=966b74b95401d92592d42bfded1cc2c6925ddf6bc487ccb628df58ac459fc45b
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: tiramisu-2.0.20211107
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
                   ` (8 preceding siblings ...)
  2021-11-07 20:06 ` Vapourium
@ 2021-11-07 21:13 ` paper42
  2021-11-07 21:13 ` paper42
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: paper42 @ 2021-11-07 21:13 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 200 bytes --]

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/33642#discussion_r744317112

Comment:
```suggestion
hostmakedepends="pkg-config vala"
```

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: tiramisu-2.0.20211107
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
                   ` (9 preceding siblings ...)
  2021-11-07 21:13 ` [PR REVIEW] New package: tiramisu-2.0.20211107 paper42
@ 2021-11-07 21:13 ` paper42
  2021-11-07 21:16 ` [PR PATCH] [Updated] " Vapourium
                   ` (3 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: paper42 @ 2021-11-07 21:13 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 188 bytes --]

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/33642#discussion_r744317157

Comment:
The commit message should also be updated

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: tiramisu-2.0.20211107
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
                   ` (10 preceding siblings ...)
  2021-11-07 21:13 ` paper42
@ 2021-11-07 21:16 ` Vapourium
  2021-11-09 23:59 ` [PR REVIEW] " paper42
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 16+ messages in thread
From: Vapourium @ 2021-11-07 21:16 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1667 bytes --]

There is an updated pull request by Vapourium against master on the void-packages repository

https://github.com/Vapourium/void-packages Tiramisu
https://github.com/void-linux/void-packages/pull/33642

New package: tiramisu-2.0.20211107
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Sorry for the spam, but I've had mishaps on the last 2 PRs.

A patch file from https://github.com/void-linux/void-packages/pull/33642.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-Tiramisu-33642.patch --]
[-- Type: text/x-diff, Size: 1091 bytes --]

From 94ff0b84e006ed0361b0bde4bcecdf6924596d53 Mon Sep 17 00:00:00 2001
From: Vapourium <vapourium@riseup.net>
Date: Tue, 19 Oct 2021 16:24:40 -0400
Subject: [PATCH] New package: tiramisu-20211107

---
 srcpkgs/tiramisu/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/tiramisu/template

diff --git a/srcpkgs/tiramisu/template b/srcpkgs/tiramisu/template
new file mode 100644
index 000000000000..10da9bdbf66f
--- /dev/null
+++ b/srcpkgs/tiramisu/template
@@ -0,0 +1,19 @@
+# Template file for 'tiramisu'
+pkgname=tiramisu
+version=2.0.20211107
+revision=1
+build_style=gnu-makefile
+make_use_env=yes
+hostmakedepends="pkg-config vala"
+makedepends="libglib-devel"
+checkdepends="dbus"
+short_desc="Desktop notifications, the UNIX way"
+maintainer="Vapourium <vapourium@riseup.net>"
+license="MIT"
+homepage="https://github.com/Sweets/tiramisu"
+distfiles="https://github.com/Sweets/tiramisu/archive/refs/tags/${version}.tar.gz"
+checksum=966b74b95401d92592d42bfded1cc2c6925ddf6bc487ccb628df58ac459fc45b
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR REVIEW] New package: tiramisu-2.0.20211107
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
                   ` (11 preceding siblings ...)
  2021-11-07 21:16 ` [PR PATCH] [Updated] " Vapourium
@ 2021-11-09 23:59 ` paper42
  2021-11-10  0:35 ` [PR PATCH] [Updated] " Vapourium
  2021-11-13 19:46 ` [PR PATCH] [Merged]: " paper42
  14 siblings, 0 replies; 16+ messages in thread
From: paper42 @ 2021-11-09 23:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 210 bytes --]

New review comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/33642#discussion_r746142358

Comment:
> The commit message should also be updated

ping @Vapourium 

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Updated] New package: tiramisu-2.0.20211107
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
                   ` (12 preceding siblings ...)
  2021-11-09 23:59 ` [PR REVIEW] " paper42
@ 2021-11-10  0:35 ` Vapourium
  2021-11-13 19:46 ` [PR PATCH] [Merged]: " paper42
  14 siblings, 0 replies; 16+ messages in thread
From: Vapourium @ 2021-11-10  0:35 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1667 bytes --]

There is an updated pull request by Vapourium against master on the void-packages repository

https://github.com/Vapourium/void-packages Tiramisu
https://github.com/void-linux/void-packages/pull/33642

New package: tiramisu-2.0.20211107
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Sorry for the spam, but I've had mishaps on the last 2 PRs.

A patch file from https://github.com/void-linux/void-packages/pull/33642.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-Tiramisu-33642.patch --]
[-- Type: text/x-diff, Size: 1095 bytes --]

From 5d6661780b06a77ed3179f74e9cd96fec89f5659 Mon Sep 17 00:00:00 2001
From: Vapourium <vapourium@riseup.net>
Date: Tue, 19 Oct 2021 16:24:40 -0400
Subject: [PATCH] New package: tiramisu-2.0.20211107

---
 srcpkgs/tiramisu/template | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)
 create mode 100644 srcpkgs/tiramisu/template

diff --git a/srcpkgs/tiramisu/template b/srcpkgs/tiramisu/template
new file mode 100644
index 000000000000..10da9bdbf66f
--- /dev/null
+++ b/srcpkgs/tiramisu/template
@@ -0,0 +1,19 @@
+# Template file for 'tiramisu'
+pkgname=tiramisu
+version=2.0.20211107
+revision=1
+build_style=gnu-makefile
+make_use_env=yes
+hostmakedepends="pkg-config vala"
+makedepends="libglib-devel"
+checkdepends="dbus"
+short_desc="Desktop notifications, the UNIX way"
+maintainer="Vapourium <vapourium@riseup.net>"
+license="MIT"
+homepage="https://github.com/Sweets/tiramisu"
+distfiles="https://github.com/Sweets/tiramisu/archive/refs/tags/${version}.tar.gz"
+checksum=966b74b95401d92592d42bfded1cc2c6925ddf6bc487ccb628df58ac459fc45b
+
+post_install() {
+	vlicense LICENSE
+}

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PR PATCH] [Merged]: New package: tiramisu-2.0.20211107
  2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
                   ` (13 preceding siblings ...)
  2021-11-10  0:35 ` [PR PATCH] [Updated] " Vapourium
@ 2021-11-13 19:46 ` paper42
  14 siblings, 0 replies; 16+ messages in thread
From: paper42 @ 2021-11-13 19:46 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1506 bytes --]

There's a merged pull request on the void-packages repository

New package: tiramisu-2.0.20211107
https://github.com/void-linux/void-packages/pull/33642

Description:
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (ARCH-LIBC)
- [ ] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [ ] aarch64-musl
  - [ ] armv7l
  - [ ] armv6l-musl
-->

Sorry for the spam, but I've had mishaps on the last 2 PRs.

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2021-11-13 19:46 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-19 20:26 [PR PATCH] New package: tiramisu-2.0 Vapourium
2021-10-20  1:30 ` [PR PATCH] [Updated] " Vapourium
2021-10-20 11:43 ` [PR PATCH] [Updated] New package: tiramisu-20211019 Vapourium
2021-11-07 19:07 ` Vapourium
2021-11-07 19:09 ` [PR PATCH] [Updated] New package: tiramisu-20211107 Vapourium
2021-11-07 19:11 ` Vapourium
2021-11-07 19:26 ` [PR REVIEW] " paper42
2021-11-07 20:04 ` Vapourium
2021-11-07 20:05 ` [PR PATCH] [Updated] " Vapourium
2021-11-07 20:06 ` Vapourium
2021-11-07 21:13 ` [PR REVIEW] New package: tiramisu-2.0.20211107 paper42
2021-11-07 21:13 ` paper42
2021-11-07 21:16 ` [PR PATCH] [Updated] " Vapourium
2021-11-09 23:59 ` [PR REVIEW] " paper42
2021-11-10  0:35 ` [PR PATCH] [Updated] " Vapourium
2021-11-13 19:46 ` [PR PATCH] [Merged]: " paper42

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).