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: firefly-iii-5.7.11, firefly-iii-data-importer-0.9.15
Date: Thu, 08 Sep 2022 19:28:28 +0200	[thread overview]
Message-ID: <20220908172828.0W51VloIENrtDZAYrR8CiEXA9VtD3YFqrKzrflugUus@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-39156@inbox.vuxu.org>

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

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

https://github.com/TinfoilSubmarine/void-packages maint/firefly-iii
https://github.com/void-linux/void-packages/pull/39156

New packages: firefly-iii-5.7.11, firefly-iii-data-importer-0.9.15
<!-- 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**|**NO**
-->

<!-- 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/39156.patch is attached

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

From 8592c7b9629469a2bf015cd9181ceb9b74eb2e24 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Fri, 2 Sep 2022 09:20:38 -0400
Subject: [PATCH 1/2] New package: firefly-iii-5.7.11

---
 srcpkgs/firefly-iii/template | 53 ++++++++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)
 create mode 100644 srcpkgs/firefly-iii/template

diff --git a/srcpkgs/firefly-iii/template b/srcpkgs/firefly-iii/template
new file mode 100644
index 000000000000..ba1a847a5922
--- /dev/null
+++ b/srcpkgs/firefly-iii/template
@@ -0,0 +1,53 @@
+# Template file for 'firefly-iii'
+pkgname=firefly-iii
+version=5.7.11
+revision=1
+conf_files="/etc/webapps/firefly-iii/firefly-iii.conf"
+hostmakedepends="composer8.0 unzip"
+depends="php8.0 php8.0-intl php8.0-sodium php8.0-gd"
+short_desc="Web-based personal finances manager"
+maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
+license="AGPL-3.0-or-later"
+homepage="https://github.com/firefly-iii/firefly-iii"
+changelog="https://raw.githubusercontent.com/firefly-iii/firefly-iii/main/changelog.md"
+distfiles="https://github.com/firefly-iii/firefly-iii/archive/refs/tags/${version}.tar.gz"
+checksum=954f686c88bb7f6ef73e956b239f51d56542a2a70337db1ad8cfb2f6184068db
+make_dirs="/var/lib/firefly-iii/storage 0750 http http
+ /var/lib/firefly-iii/storage/app/public 0750 http http
+ /var/lib/firefly-iii/storage/build 0750 http http
+ /var/lib/firefly-iii/storage/database 0750 http http
+ /var/lib/firefly-iii/storage/debugbar 0750 http http
+ /var/lib/firefly-iii/storage/export 0750 http http
+ /var/lib/firefly-iii/storage/framework/cache/data 0750 http http
+ /var/lib/firefly-iii/storage/framework/sessions 0750 http http
+ /var/lib/firefly-iii/storage/framework/testing 0750 http http
+ /var/lib/firefly-iii/storage/framework/views 0750 http http
+ /var/lib/firefly-iii/storage/framework/views/v1 0750 http http
+ /var/lib/firefly-iii/storage/logs 0750 http http
+ /var/lib/firefly-iii/storage/upload 0750 http http
+ /var/cache/firefly-iii 0750 http http"
+
+do_build() {
+	composer8.0 install --no-scripts --no-dev --ignore-platform-reqs
+}
+
+do_install() {
+	vmkdir usr/share/webapps/firefly-iii
+	for i in .htaccess app app.json artisan bootstrap config database frontend \
+	 index.php public resources routes server.php vendor webpack.mix.js; do
+		vcopy "$i" usr/share/webapps/firefly-iii
+	done
+
+	vsconf .env.example firefly-iii.conf
+	vsconf nginx_app.conf
+
+	vinstall .env.example 644 /etc/webapps/firefly-iii firefly-iii.conf
+	ln -s /etc/webapps/firefly-iii/firefly-iii.conf "${DESTDIR}"/usr/share/webapps/firefly-iii/.env
+
+	ln -s /var/lib/firefly-iii/storage "${DESTDIR}"/usr/share/webapps/firefly-iii
+
+	rm -rf "${DESTDIR}"/usr/share/webapps/firefly-iii/bootstrap/cache
+	ln -s /var/cache/firefly-iii "${DESTDIR}"/usr/share/webapps/firefly-iii/bootstrap/cache
+
+	vlicense LICENSE
+}

From c3b8a3d98875de44dcee94cbf4eef776d1b31ab3 Mon Sep 17 00:00:00 2001
From: Joel Beckmeyer <joel@beckmeyer.us>
Date: Wed, 7 Sep 2022 17:30:43 -0400
Subject: [PATCH 2/2] New package: firefly-iii-data-importer-0.9.15

---
 srcpkgs/firefly-iii-data-importer/template | 55 ++++++++++++++++++++++
 1 file changed, 55 insertions(+)
 create mode 100644 srcpkgs/firefly-iii-data-importer/template

diff --git a/srcpkgs/firefly-iii-data-importer/template b/srcpkgs/firefly-iii-data-importer/template
new file mode 100644
index 000000000000..bae4825b2a78
--- /dev/null
+++ b/srcpkgs/firefly-iii-data-importer/template
@@ -0,0 +1,55 @@
+# Template file for 'firefly-iii-data-importer'
+pkgname=firefly-iii-data-importer
+version=0.9.15
+revision=1
+wrksrc="data-importer-${version}"
+conf_files="/etc/webapps/firefly-iii-data-importer/data-importer.conf"
+hostmakedepends="composer8.0 unzip"
+depends="php8.0"
+short_desc="Can import data into Firefly III"
+maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
+license="AGPL-3.0-or-later"
+homepage="https://github.com/firefly-iii/data-importer"
+changelog="https://raw.githubusercontent.com/firefly-iii/data-importer/main/changelog.md"
+distfiles="https://github.com/firefly-iii/data-importer/archive/refs/tags/${version}.tar.gz"
+checksum=6f4252a66d8771b12642404b6da38e5178e91c78492417bce61fdf8efa1ceb91
+make_dirs="/var/lib/firefly-iii-data-importer/storage/app/public 0750 http http
+ /var/lib/firefly-iii-data-importer/storage/configurations 0750 http http
+ /var/lib/firefly-iii-data-importer/storage/conversion-routines 0750 http http
+ /var/lib/firefly-iii-data-importer/storage/debugbar 0750 http http
+ /var/lib/firefly-iii-data-importer/storage/framework/cache/data 0750 http http
+ /var/lib/firefly-iii-data-importer/storage/framework/sessions 0750 http http
+ /var/lib/firefly-iii-data-importer/storage/framework/testing 0750 http http
+ /var/lib/firefly-iii-data-importer/storage/framework/views 0750 http http
+ /var/lib/firefly-iii-data-importer/storage/jobs 0750 http http
+ /var/lib/firefly-iii-data-importer/storage/logs 0750 http http
+ /var/lib/firefly-iii-data-importer/storage/submission-routines 0750 http http
+ /var/lib/firefly-iii-data-importer/storage/uploads 0750 http http
+ /var/cache/firefly-iii-data-importer 0750 http http"
+
+do_build() {
+	composer8.0 install --no-scripts --no-dev --ignore-platform-reqs
+}
+
+do_install() {
+	vmkdir usr/share/webapps/firefly-iii-data-importer
+	for i in app artisan bootstrap config database phpunit.xml public resources \
+	 routes server.php vendor webpack.mix.js; do
+		vcopy "$i" usr/share/webapps/firefly-iii-data-importer
+	done
+
+	vsconf .env.example data-importer.conf
+
+	vinstall .env.example 644 /etc/webapps/firefly-iii-data-importer data-importer.conf
+	ln -s /etc/webapps/firefly-iii-data-importer/data-importer.conf \
+	 "${DESTDIR}"/usr/share/webapps/firefly-iii-data-importer/.env
+
+	ln -s /var/lib/firefly-iii-data-importer/storage \
+	 "${DESTDIR}"/usr/share/webapps/firefly-iii-data-importer
+
+	rm -rf "${DESTDIR}"/usr/share/webapps/firefly-iii-data-importer/bootstrap/cache
+	ln -s /var/cache/firefly-iii-data-importer \
+	 "${DESTDIR}"/usr/share/webapps/firefly-iii-data-importer/bootstrap/cache
+
+	vlicense LICENSE
+}

  reply	other threads:[~2022-09-08 17:28 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-07 21:37 [PR PATCH] " TinfoilSubmarine
2022-09-08 17:28 ` TinfoilSubmarine [this message]
2022-09-09 12:26 ` [PR PATCH] [Updated] " TinfoilSubmarine
2022-09-12 12:33 ` TinfoilSubmarine
2022-10-24 12:40 ` [PR PATCH] [Updated] New packages: firefly-iii-5.7.12, firefly-iii-data-importer-0.9.16 TinfoilSubmarine
2022-10-24 12:44 ` [PR PATCH] [Updated] New packages: firefly-iii-5.7.14, firefly-iii-data-importer-0.9.17 TinfoilSubmarine
2022-11-02 12:21 ` TinfoilSubmarine
2022-12-30 19:13 ` [PR PATCH] [Closed]: New packages: firefly-iii-5.7.15, firefly-iii-data-importer-0.9.17 TinfoilSubmarine

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=20220908172828.0W51VloIENrtDZAYrR8CiEXA9VtD3YFqrKzrflugUus@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).