Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] moosefs: added mfscgiserv service
@ 2023-06-14 10:18 toomyem
  2023-06-14 10:19 ` [PR PATCH] [Updated] " toomyem
  2023-06-15 12:23 ` [PR PATCH] [Merged]: " Duncaen
  0 siblings, 2 replies; 3+ messages in thread
From: toomyem @ 2023-06-14 10:18 UTC (permalink / raw)
  To: ml

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

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

https://github.com/toomyem/void-packages moosefs-cgiserv
https://github.com/void-linux/void-packages/pull/44429

moosefs: added mfscgiserv service
Added service file for mfscgiserv.

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

#### Local build testing
- I built this PR locally for my native architecture, (x64-glibc)


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

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

From c048209d9055ce64934caf7e4aabcd6ac6a9e5d7 Mon Sep 17 00:00:00 2001
From: toomyem <toomyem@gmail.com>
Date: Wed, 14 Jun 2023 11:55:13 +0200
Subject: [PATCH] moosefs: added mfscgiserv service

---
 srcpkgs/moosefs/files/mfscgiserv/run | 4 ++++
 srcpkgs/moosefs/template             | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)
 create mode 100644 srcpkgs/moosefs/files/mfscgiserv/run

diff --git a/srcpkgs/moosefs/files/mfscgiserv/run b/srcpkgs/moosefs/files/mfscgiserv/run
new file mode 100644
index 000000000000..4eee2a80277e
--- /dev/null
+++ b/srcpkgs/moosefs/files/mfscgiserv/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+exec 2>&1
+[ -e conf ] && . ./conf
+exec mfscgiserv -f $OPTS start
diff --git a/srcpkgs/moosefs/template b/srcpkgs/moosefs/template
index 0c14645f9b22..1d8d3fdb5bdc 100644
--- a/srcpkgs/moosefs/template
+++ b/srcpkgs/moosefs/template
@@ -23,7 +23,7 @@ pre_configure() {
 
 post_install() {
 	mv ${DESTDIR}/sbin/* ${DESTDIR}/usr/bin
-	for f in chunkserver master metalogger; do
+	for f in chunkserver master metalogger cgiserv; do
 		vsv mfs${f}
 	done
 }

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

* Re: [PR PATCH] [Updated] moosefs: added mfscgiserv service
  2023-06-14 10:18 [PR PATCH] moosefs: added mfscgiserv service toomyem
@ 2023-06-14 10:19 ` toomyem
  2023-06-15 12:23 ` [PR PATCH] [Merged]: " Duncaen
  1 sibling, 0 replies; 3+ messages in thread
From: toomyem @ 2023-06-14 10:19 UTC (permalink / raw)
  To: ml

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

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

https://github.com/toomyem/void-packages moosefs-cgiserv
https://github.com/void-linux/void-packages/pull/44429

moosefs: added mfscgiserv service
Added service file for mfscgiserv.

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

#### Local build testing
- I built this PR locally for my native architecture, (x64-glibc)


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

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

From 9583f27c1113ea10f114d95a49cf23f57df36441 Mon Sep 17 00:00:00 2001
From: toomyem <toomyem@gmail.com>
Date: Wed, 14 Jun 2023 11:55:13 +0200
Subject: [PATCH] moosefs: added mfscgiserv service

---
 srcpkgs/moosefs/files/mfscgiserv/run | 4 ++++
 srcpkgs/moosefs/template             | 4 ++--
 2 files changed, 6 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/moosefs/files/mfscgiserv/run

diff --git a/srcpkgs/moosefs/files/mfscgiserv/run b/srcpkgs/moosefs/files/mfscgiserv/run
new file mode 100644
index 000000000000..4eee2a80277e
--- /dev/null
+++ b/srcpkgs/moosefs/files/mfscgiserv/run
@@ -0,0 +1,4 @@
+#!/bin/sh
+exec 2>&1
+[ -e conf ] && . ./conf
+exec mfscgiserv -f $OPTS start
diff --git a/srcpkgs/moosefs/template b/srcpkgs/moosefs/template
index 0c14645f9b22..6903e7e07ec1 100644
--- a/srcpkgs/moosefs/template
+++ b/srcpkgs/moosefs/template
@@ -1,7 +1,7 @@
 # Template file for 'moosefs'
 pkgname=moosefs
 version=3.0.117
-revision=1
+revision=2
 build_style=gnu-configure
 configure_args="--localstatedir=/var/lib --with-default-user=_mfs
  --with-default-group=_mfs"
@@ -23,7 +23,7 @@ pre_configure() {
 
 post_install() {
 	mv ${DESTDIR}/sbin/* ${DESTDIR}/usr/bin
-	for f in chunkserver master metalogger; do
+	for f in chunkserver master metalogger cgiserv; do
 		vsv mfs${f}
 	done
 }

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

* Re: [PR PATCH] [Merged]: moosefs: added mfscgiserv service
  2023-06-14 10:18 [PR PATCH] moosefs: added mfscgiserv service toomyem
  2023-06-14 10:19 ` [PR PATCH] [Updated] " toomyem
@ 2023-06-15 12:23 ` Duncaen
  1 sibling, 0 replies; 3+ messages in thread
From: Duncaen @ 2023-06-15 12:23 UTC (permalink / raw)
  To: ml

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

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

moosefs: added mfscgiserv service
https://github.com/void-linux/void-packages/pull/44429

Description:
Added service file for mfscgiserv.

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

#### Local build testing
- I built this PR locally for my native architecture, (x64-glibc)


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

end of thread, other threads:[~2023-06-15 12:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-06-14 10:18 [PR PATCH] moosefs: added mfscgiserv service toomyem
2023-06-14 10:19 ` [PR PATCH] [Updated] " toomyem
2023-06-15 12:23 ` [PR PATCH] [Merged]: " Duncaen

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).