* [gentoo-commits] repo/proj/guru:dev commit in: net-libs/signald/, profiles/, net-libs/signald/files/
2024-02-24 17:13 [gentoo-commits] repo/proj/guru:master commit in: net-libs/signald/files/, profiles/, net-libs/signald/ Julien Roy
@ 2024-02-24 17:07 ` Julien Roy
0 siblings, 0 replies; 2+ messages in thread
From: Julien Roy @ 2024-02-24 17:07 UTC (permalink / raw
To: gentoo-commits
commit: 46c6709cc898a18ccbc65693cbefe94e130144a8
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Feb 24 17:04:02 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Feb 24 17:04:09 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=46c6709c
net-libs/signald: treeclean
Flagged for removal since >30 days
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
net-libs/signald/Manifest | 2 --
net-libs/signald/files/signald.initd | 23 -------------
net-libs/signald/metadata.xml | 19 -----------
net-libs/signald/signald-0.23.2.ebuild | 61 ----------------------------------
profiles/package.mask | 5 ++-
5 files changed, 2 insertions(+), 108 deletions(-)
diff --git a/net-libs/signald/Manifest b/net-libs/signald/Manifest
deleted file mode 100644
index 5c8c5ad430..0000000000
--- a/net-libs/signald/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST signald-0.23.2.tar.bz2 267235 BLAKE2B 4ef118dcb4003320945a3110488f606889a1e4c716b54a2e984e73a3631b9b205bb782206b4ce1e89b6e2d994464971d52c24491b4c519a5cd5d648df711cea5 SHA512 a308f31a14bd6c7d71441aaa1ec318d21f4d74c224f14940077105bf0f37e3a9fbc6799d89667ce638cce291773df8a468db8e7b87def1d342b5bc6659339dc1
-DIST signald-0.23.2.tar.xz 121013748 BLAKE2B 66b6d4f0077a70f6311f60b5fd770638927ed8d4948920e616a36e701a0bfec1b950238a1817ed1bcfc68acd31de7833038a55fb2583a58b42df4324261f234e SHA512 840b0658afb3b1f30ba742328fb326bf788e9825e07fc6bc081ad02639e95eb366959ffdb2e21486d87c4973ddb69905941573e6eb4edbc4c935cd15a35fb03d
diff --git a/net-libs/signald/files/signald.initd b/net-libs/signald/files/signald.initd
deleted file mode 100644
index 65ce92d996..0000000000
--- a/net-libs/signald/files/signald.initd
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-name="signald daemon"
-description="an API for Signal"
-
-pidfile="/run/${RC_SVCNAME}.pid"
-command="/usr/bin/signald"
-command_args="-d /var/lib/signald -s /tmp/signald.sock --system-socket"
-command_background=true
-command_user="signald:signald"
-
-output_log="/var/log/signald.log"
-error_log="/var/log/signald.log"
-
-depend() {
- need net
-}
-
-start_pre() {
- checkpath -f -m 0644 -o "$command_user" "$output_log"
-}
diff --git a/net-libs/signald/metadata.xml b/net-libs/signald/metadata.xml
deleted file mode 100644
index 44efbd59f1..0000000000
--- a/net-libs/signald/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <name>Julien Roy</name>
- <email>julien@jroy.ca</email>
- </maintainer>
- <longdescription>
- a daemon that facilitates communication over Signal. It is unofficial, unapproved, and not nearly as secure as the real Signal clients
- Signal does not offer any sort of official API. Unlike traditional messaging applications, the Signal server expects the
- client software to perform encryption and key management. signald handles all of these client-side requirements and
- exposes a plain-text API which can be easily used by developers to build custom Signal clients. </longdescription>
- <upstream>
- <changelog>https://gitlab.com/signald/signald/-/releases</changelog>
- <doc>https://signald.org</doc>
- <bugs-to>https://gitlab.com/signald/signald/-/issues</bugs-to>
- <remote-id type="gitlab">signald/signald</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/net-libs/signald/signald-0.23.2.ebuild b/net-libs/signald/signald-0.23.2.ebuild
deleted file mode 100644
index 95e60d09e9..0000000000
--- a/net-libs/signald/signald-0.23.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-DESCRIPTION="an API for interacting with Signal Private Messenger"
-HOMEPAGE="https://gitlab.com/signald/signald"
-SRC_URI="https://gitlab.com/signald/signald/-/archive/${PV}.tar.bz2 -> ${P}.tar.bz2
- https://jroy.ca/dist/${P}.tar.xz
-"
-COMMIT="8cfebfe0ab8395221eca94c4c366abb6d7f39314"
-S="${WORKDIR}/${P}-${COMMIT}"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="acct-user/signald
- virtual/jre"
-DEPEND="${RDEPEND}"
-BDEPEND="dev-java/gradle-bin:7.3.3"
-
-# From https://github.com/gentoo/gentoo/pull/28986
-# TODO: inherit this eclass when the PR is merged
-GRADLE_ARGS=(
- --console=plain
- --gradle-user-home "${T}/gradle_user_home"
- --info
- --no-build-cache
- --no-daemon
- --offline
- --parallel
- --project-cache-dir "${T}/gradle_project_cache"
- --stacktrace
-)
-
-src_unpack() {
- default
- mv "${WORKDIR}/gradle_project_cache" "${T}" || die
- mv "${WORKDIR}/gradle_user_home" "${T}" || die
-}
-
-src_compile() {
- gradle "${GRADLE_ARGS[@]}" installDist || die
-}
-
-src_install() {
- rm "${S}/build/install/signald/bin/signald.bat" || die
- dodir "/var/lib"
- mv "${S}/build/install/signald" "${ED}/var/lib" || die
- dosym -r "/var/lib/signald/bin/signald" "usr/bin/${PN}"
-
- newinitd "${FILESDIR}/${PN}.initd" "${PN}"
- sed -i -e "s/^EnvironmentFile=-\/etc\/default\/signald$//" \
- "${S}/src/main/resources/io/finn/signald/signald.service" || die
- sed -i -e "s/--system-socket/-s \/tmp\/signald.sock/" \
- "${S}/src/main/resources/io/finn/signald/signald.service" || die
- systemd_dounit "${S}/src/main/resources/io/finn/signald/signald.service"
-}
diff --git a/profiles/package.mask b/profiles/package.mask
index dede08a616..4f8ba4e099 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -61,9 +61,8 @@ sys-cluster/temanejo
sys-cluster/parsec
# Anna Vyalkova <cyber+gentoo@sysrq.in> (2024-01-07)
-# Depends on removed dev-java/gradle-bin slot.
-net-libs/signald
-# and revdeps
+# Depends on dropped net-libs/signald package
+# Keeping the package since version >=0.5.0 no longer depend on it, just needs to be packaged
net-im/mautrix-signal
# Lucio Sauer <watermanpaint@posteo.net> (2024-01-04)
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] repo/proj/guru:master commit in: net-libs/signald/files/, profiles/, net-libs/signald/
@ 2024-02-24 17:13 Julien Roy
2024-02-24 17:07 ` [gentoo-commits] repo/proj/guru:dev commit in: net-libs/signald/, profiles/, net-libs/signald/files/ Julien Roy
0 siblings, 1 reply; 2+ messages in thread
From: Julien Roy @ 2024-02-24 17:13 UTC (permalink / raw
To: gentoo-commits
commit: 46c6709cc898a18ccbc65693cbefe94e130144a8
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Feb 24 17:04:02 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Feb 24 17:04:09 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=46c6709c
net-libs/signald: treeclean
Flagged for removal since >30 days
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
net-libs/signald/Manifest | 2 --
net-libs/signald/files/signald.initd | 23 -------------
net-libs/signald/metadata.xml | 19 -----------
net-libs/signald/signald-0.23.2.ebuild | 61 ----------------------------------
profiles/package.mask | 5 ++-
5 files changed, 2 insertions(+), 108 deletions(-)
diff --git a/net-libs/signald/Manifest b/net-libs/signald/Manifest
deleted file mode 100644
index 5c8c5ad430..0000000000
--- a/net-libs/signald/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST signald-0.23.2.tar.bz2 267235 BLAKE2B 4ef118dcb4003320945a3110488f606889a1e4c716b54a2e984e73a3631b9b205bb782206b4ce1e89b6e2d994464971d52c24491b4c519a5cd5d648df711cea5 SHA512 a308f31a14bd6c7d71441aaa1ec318d21f4d74c224f14940077105bf0f37e3a9fbc6799d89667ce638cce291773df8a468db8e7b87def1d342b5bc6659339dc1
-DIST signald-0.23.2.tar.xz 121013748 BLAKE2B 66b6d4f0077a70f6311f60b5fd770638927ed8d4948920e616a36e701a0bfec1b950238a1817ed1bcfc68acd31de7833038a55fb2583a58b42df4324261f234e SHA512 840b0658afb3b1f30ba742328fb326bf788e9825e07fc6bc081ad02639e95eb366959ffdb2e21486d87c4973ddb69905941573e6eb4edbc4c935cd15a35fb03d
diff --git a/net-libs/signald/files/signald.initd b/net-libs/signald/files/signald.initd
deleted file mode 100644
index 65ce92d996..0000000000
--- a/net-libs/signald/files/signald.initd
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-name="signald daemon"
-description="an API for Signal"
-
-pidfile="/run/${RC_SVCNAME}.pid"
-command="/usr/bin/signald"
-command_args="-d /var/lib/signald -s /tmp/signald.sock --system-socket"
-command_background=true
-command_user="signald:signald"
-
-output_log="/var/log/signald.log"
-error_log="/var/log/signald.log"
-
-depend() {
- need net
-}
-
-start_pre() {
- checkpath -f -m 0644 -o "$command_user" "$output_log"
-}
diff --git a/net-libs/signald/metadata.xml b/net-libs/signald/metadata.xml
deleted file mode 100644
index 44efbd59f1..0000000000
--- a/net-libs/signald/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <name>Julien Roy</name>
- <email>julien@jroy.ca</email>
- </maintainer>
- <longdescription>
- a daemon that facilitates communication over Signal. It is unofficial, unapproved, and not nearly as secure as the real Signal clients
- Signal does not offer any sort of official API. Unlike traditional messaging applications, the Signal server expects the
- client software to perform encryption and key management. signald handles all of these client-side requirements and
- exposes a plain-text API which can be easily used by developers to build custom Signal clients. </longdescription>
- <upstream>
- <changelog>https://gitlab.com/signald/signald/-/releases</changelog>
- <doc>https://signald.org</doc>
- <bugs-to>https://gitlab.com/signald/signald/-/issues</bugs-to>
- <remote-id type="gitlab">signald/signald</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/net-libs/signald/signald-0.23.2.ebuild b/net-libs/signald/signald-0.23.2.ebuild
deleted file mode 100644
index 95e60d09e9..0000000000
--- a/net-libs/signald/signald-0.23.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-DESCRIPTION="an API for interacting with Signal Private Messenger"
-HOMEPAGE="https://gitlab.com/signald/signald"
-SRC_URI="https://gitlab.com/signald/signald/-/archive/${PV}.tar.bz2 -> ${P}.tar.bz2
- https://jroy.ca/dist/${P}.tar.xz
-"
-COMMIT="8cfebfe0ab8395221eca94c4c366abb6d7f39314"
-S="${WORKDIR}/${P}-${COMMIT}"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="acct-user/signald
- virtual/jre"
-DEPEND="${RDEPEND}"
-BDEPEND="dev-java/gradle-bin:7.3.3"
-
-# From https://github.com/gentoo/gentoo/pull/28986
-# TODO: inherit this eclass when the PR is merged
-GRADLE_ARGS=(
- --console=plain
- --gradle-user-home "${T}/gradle_user_home"
- --info
- --no-build-cache
- --no-daemon
- --offline
- --parallel
- --project-cache-dir "${T}/gradle_project_cache"
- --stacktrace
-)
-
-src_unpack() {
- default
- mv "${WORKDIR}/gradle_project_cache" "${T}" || die
- mv "${WORKDIR}/gradle_user_home" "${T}" || die
-}
-
-src_compile() {
- gradle "${GRADLE_ARGS[@]}" installDist || die
-}
-
-src_install() {
- rm "${S}/build/install/signald/bin/signald.bat" || die
- dodir "/var/lib"
- mv "${S}/build/install/signald" "${ED}/var/lib" || die
- dosym -r "/var/lib/signald/bin/signald" "usr/bin/${PN}"
-
- newinitd "${FILESDIR}/${PN}.initd" "${PN}"
- sed -i -e "s/^EnvironmentFile=-\/etc\/default\/signald$//" \
- "${S}/src/main/resources/io/finn/signald/signald.service" || die
- sed -i -e "s/--system-socket/-s \/tmp\/signald.sock/" \
- "${S}/src/main/resources/io/finn/signald/signald.service" || die
- systemd_dounit "${S}/src/main/resources/io/finn/signald/signald.service"
-}
diff --git a/profiles/package.mask b/profiles/package.mask
index dede08a616..4f8ba4e099 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -61,9 +61,8 @@ sys-cluster/temanejo
sys-cluster/parsec
# Anna Vyalkova <cyber+gentoo@sysrq.in> (2024-01-07)
-# Depends on removed dev-java/gradle-bin slot.
-net-libs/signald
-# and revdeps
+# Depends on dropped net-libs/signald package
+# Keeping the package since version >=0.5.0 no longer depend on it, just needs to be packaged
net-im/mautrix-signal
# Lucio Sauer <watermanpaint@posteo.net> (2024-01-04)
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-02-24 17:13 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-24 17:13 [gentoo-commits] repo/proj/guru:master commit in: net-libs/signald/files/, profiles/, net-libs/signald/ Julien Roy
2024-02-24 17:07 ` [gentoo-commits] repo/proj/guru:dev commit in: net-libs/signald/, profiles/, net-libs/signald/files/ Julien Roy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox