Github messages for voidlinux
 help / color / mirror / Atom feed
From: TinfoilSubmarine <TinfoilSubmarine@users.noreply.github.com>
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] New packages: lemmy-0.18.2, lemmy-ui-0.18.2
Date: Fri, 28 Jul 2023 19:04:03 +0200	[thread overview]
Message-ID: <20230728170403.Kodd2voTThoK2AsOTvQKGDMJ6PzEpuyx7f4h4SR42r4@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-45170@inbox.vuxu.org>

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

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

https://github.com/TinfoilSubmarine/void-packages maint/lemmy
https://github.com/void-linux/void-packages/pull/45170

New packages: lemmy-0.18.2, lemmy-ui-0.18.2
- New package: lemmy-0.18.2
- New package: lemmy-ui-0.18.2

<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- 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
-->


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

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

From 78baca2a86835ef180c22509119dc907b5f57041 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Wed, 14 Jun 2023 17:18:12 -0400
Subject: [PATCH 1/2] New package: lemmy-0.18.3

---
 srcpkgs/lemmy/files/lemmy/run |  6 ++++++
 srcpkgs/lemmy/template        | 40 +++++++++++++++++++++++++++++++++++
 2 files changed, 46 insertions(+)
 create mode 100644 srcpkgs/lemmy/files/lemmy/run
 create mode 100644 srcpkgs/lemmy/template

diff --git a/srcpkgs/lemmy/files/lemmy/run b/srcpkgs/lemmy/files/lemmy/run
new file mode 100644
index 0000000000000..8e7871ac50ffb
--- /dev/null
+++ b/srcpkgs/lemmy/files/lemmy/run
@@ -0,0 +1,6 @@
+#!/bin/sh
+exec 2>&1
+[ -r ./conf ] && . ./conf
+export LEMMY_CONFIG_LOCATION=${LEMMY_CONFIG_LOCATION:-/etc/lemmy/lemmy.hjson}
+cd /var/lib/lemmy || exit 1
+exec chpst -u _lemmy:_lemmy lemmy_server
diff --git a/srcpkgs/lemmy/template b/srcpkgs/lemmy/template
new file mode 100644
index 0000000000000..0f7e6fb8dd6fa
--- /dev/null
+++ b/srcpkgs/lemmy/template
@@ -0,0 +1,40 @@
+# Template file for 'lemmy'
+pkgname=lemmy
+version=0.18.3
+revision=1
+_translation_commit=153351ad2f2fbd03ca4c0b353a84f9d622a5ab91
+build_style=cargo
+configure_args="--features=embed-pictrs"
+hostmakedepends="pkg-config protobuf"
+makedepends="openssl-devel libpqxx-devel libzstd-devel"
+depends="ImageMagick ffmpeg exiftool"
+short_desc="Link aggregator and forum for the fediverse"
+maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
+license="AGPL-3.0-only"
+homepage="https://join-lemmy.org/"
+changelog="https://raw.githubusercontent.com/LemmyNet/lemmy/main/RELEASES.md"
+distfiles="https://github.com/LemmyNet/lemmy/archive/refs/tags/${version}.tar.gz
+ https://github.com/LemmyNet/lemmy-translations/archive/${_translation_commit}.tar.gz"
+checksum="cc649b92390c86a95de625912f8515b09e3c0579df8c5bf5d0d8e02109783ecf
+ a91bc15aeb47d6612f7a73249c51f2bb8658f0ab460184e36a179ac1f02bcc6b"
+system_accounts="_lemmy"
+make_dirs="/var/lib/lemmy 0700 _lemmy _lemmy"
+_lemmy_homedir="/var/lib/lemmy"
+conf_files="/etc/lemmy/lemmy.hjson"
+
+post_extract() {
+	cp -r lemmy-${version}/. .
+	cp -r lemmy-translations-${_translation_commit}/. crates/utils/translations
+	rm -rf lemmy-${version} lemmy-translations-${_translation_commit}
+}
+
+post_patch() {
+	vsed -i "s/unknown version/$version/" crates/utils/src/version.rs
+}
+
+post_install() {
+	vsconf config/defaults.hjson
+	vinstall config/config.hjson 644 etc/lemmy lemmy.hjson
+	vsv lemmy
+	vlicense LICENSE
+}

From 940fa29c34da42cd045596c44b2d4702620e97f2 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Fri, 16 Jun 2023 10:09:22 -0400
Subject: [PATCH 2/2] New package: lemmy-ui-0.18.3

---
 srcpkgs/lemmy-ui/files/lemmy-ui/run |  5 +++
 srcpkgs/lemmy-ui/template           | 58 +++++++++++++++++++++++++++++
 2 files changed, 63 insertions(+)
 create mode 100644 srcpkgs/lemmy-ui/files/lemmy-ui/run
 create mode 100644 srcpkgs/lemmy-ui/template

diff --git a/srcpkgs/lemmy-ui/files/lemmy-ui/run b/srcpkgs/lemmy-ui/files/lemmy-ui/run
new file mode 100644
index 0000000000000..26535bea510c0
--- /dev/null
+++ b/srcpkgs/lemmy-ui/files/lemmy-ui/run
@@ -0,0 +1,5 @@
+#!/bin/sh
+exec 2>&1
+[ -r ./conf ] && . ./conf
+cd /usr/lib/lemmy-ui || exit 1
+exec chpst -u _lemmyui:_lemmyui node dist/js/server.js
diff --git a/srcpkgs/lemmy-ui/template b/srcpkgs/lemmy-ui/template
new file mode 100644
index 0000000000000..b79fb46c97e5f
--- /dev/null
+++ b/srcpkgs/lemmy-ui/template
@@ -0,0 +1,58 @@
+# Template file for 'lemmy-ui'
+pkgname=lemmy-ui
+version=0.18.3
+revision=1
+_translation_commit=153351ad2f2fbd03ca4c0b353a84f9d622a5ab91
+hostmakedepends="yarn pkg-config python3"
+makedepends="libvips-devel"
+depends="nodejs"
+short_desc="Official web app for lemmy"
+maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
+license="AGPL-3.0-only"
+homepage="https://join-lemmy.org/"
+distfiles="https://github.com/LemmyNet/lemmy-ui/archive/refs/tags/${version}.tar.gz
+ https://github.com/LemmyNet/lemmy-translations/archive/${_translation_commit}.tar.gz"
+checksum="746bdb85627aa1381a8e77176985b522a323b49a861347a68227e70948e54a49
+ a91bc15aeb47d6612f7a73249c51f2bb8658f0ab460184e36a179ac1f02bcc6b"
+python_version=3
+system_accounts="_lemmyui"
+
+export NODE_ENV=production
+case "$XBPS_TARGET_MACHINE" in
+	aarch64*) export npm_config_arch=arm64;;
+	armv5*) export npm_config_arch=arm; export npm_config_arm_version=5;;
+	armv6*) export npm_config_arch=arm; export npm_config_arm_version=6;;
+	armv7*) export npm_config_arch=arm; export npm_config_arm_version=7;;
+	i686*) export npm_config_arch=ia32;;
+	x86_64*) export npm_config_arch=x64;;
+esac
+export npm_config_build_from_source=true
+if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
+	export npm_config_libc=musl
+fi
+export npm_config_platform=linux
+
+post_extract() {
+	cp -r lemmy-ui-${version}/. .
+	cp -r lemmy-translations-${_translation_commit}/. lemmy-translations
+	rm -rf lemmy-${version} lemmy-translations-${_translation_commit}
+
+	yarn install --pure-lockfile
+}
+
+post_patch() {
+	vsed -i "s/unknown version/$version/" src/shared/version.ts
+}
+
+do_build() {
+	yarn build:prod
+}
+
+do_install() {
+	npm prune
+	vmkdir usr/lib/lemmy-ui
+	vcopy dist usr/lib/lemmy-ui
+	vcopy node_modules usr/lib/lemmy-ui
+	vlicense LICENSE
+	vsv lemmy-ui
+}

  parent reply	other threads:[~2023-07-28 17:04 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-21 12:28 [PR PATCH] " TinfoilSubmarine
2023-07-21 13:12 ` [PR PATCH] [Updated] " TinfoilSubmarine
2023-07-21 14:10 ` TinfoilSubmarine
2023-07-28 17:04 ` TinfoilSubmarine [this message]
2023-08-08 15:35 ` TinfoilSubmarine
2023-08-17 14:27 ` [PR PATCH] [Updated] New packages: lemmy-0.18.4, lemmy-ui-0.18.4 TinfoilSubmarine
2023-09-29 14:39 ` TinfoilSubmarine
2023-12-29  1:43 ` github-actions
2024-01-12  1:47 ` [PR PATCH] [Closed]: " github-actions

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230728170403.Kodd2voTThoK2AsOTvQKGDMJ6PzEpuyx7f4h4SR42r4@z \
    --to=tinfoilsubmarine@users.noreply.github.com \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).