Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] Add ckan
@ 2022-03-19  6:01 knusbaum
  2022-03-19  6:02 ` [PR PATCH] [Updated] " knusbaum
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: knusbaum @ 2022-03-19  6:01 UTC (permalink / raw)
  To: ml

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

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

https://github.com/knusbaum/void-packages add-ckan
https://github.com/void-linux/void-packages/pull/36220

Add ckan
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES** 



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

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

From 32bc4df5125bb83cfd5bc3cc91ca11f63986a7d1 Mon Sep 17 00:00:00 2001
From: Kyle Nusbaum <KyleJNusbaum@gmail.com>
Date: Sat, 19 Mar 2022 00:51:15 -0500
Subject: [PATCH 1/2] New package: xow-0.5

---
 srcpkgs/xow/files/xow/log/run |  3 +++
 srcpkgs/xow/files/xow/run     |  3 +++
 srcpkgs/xow/template          | 24 ++++++++++++++++++++++++
 3 files changed, 30 insertions(+)
 create mode 100644 srcpkgs/xow/files/xow/log/run
 create mode 100644 srcpkgs/xow/files/xow/run
 create mode 100644 srcpkgs/xow/template

diff --git a/srcpkgs/xow/files/xow/log/run b/srcpkgs/xow/files/xow/log/run
new file mode 100644
index 000000000000..e0b9ece1b0ee
--- /dev/null
+++ b/srcpkgs/xow/files/xow/log/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+exec logger -t xow -p daemon.info
diff --git a/srcpkgs/xow/files/xow/run b/srcpkgs/xow/files/xow/run
new file mode 100644
index 000000000000..14003cb11020
--- /dev/null
+++ b/srcpkgs/xow/files/xow/run
@@ -0,0 +1,3 @@
+#!/bin/sh
+
+exec xow 2>&1
diff --git a/srcpkgs/xow/template b/srcpkgs/xow/template
new file mode 100644
index 000000000000..a8ce6d860f3b
--- /dev/null
+++ b/srcpkgs/xow/template
@@ -0,0 +1,24 @@
+# Template file for 'xow'
+pkgname=xow
+version=0.5
+revision=1
+build_style=gnu-makefile
+make_build_args="BUILD=RELEASE"
+hostmakedepends="git curl cabextract"
+makedepends="libusb-devel"
+short_desc="Linux driver for the Xbox One wireless dongle"
+maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
+license="GPL-2.0-only"
+homepage="https://medusalix.github.io/xow"
+distfiles="https://github.com/medusalix/xow/archive/refs/tags/v${version}.tar.gz"
+checksum=57b142e6794961bc25adf389004fc5bd903d7de4700ddd50ef97c6cb41af586d
+
+do_build() {
+	make BUILD=RELEASE
+}
+
+do_install() {
+	make install DESTDIR=${DESTDIR} BINDIR=/usr/bin/ UDEVDIR="/usr/lib/udev/rules.d" MODLDIR="/usr/lib/modules-load.d" MODPDIR="/usr/lib/modprobe.d"
+	vsv xow
+	rm ${DESTDIR}/etc/systemd/system/xow.service
+}

From 799e251aecff075e8e9b6228c75d6ccd480b117d Mon Sep 17 00:00:00 2001
From: Kyle Nusbaum <KyleJNusbaum@gmail.com>
Date: Sat, 19 Mar 2022 00:59:06 -0500
Subject: [PATCH 2/2] New package: ckan-1.30.4

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

diff --git a/srcpkgs/ckan/template b/srcpkgs/ckan/template
new file mode 100644
index 000000000000..8da141362ed4
--- /dev/null
+++ b/srcpkgs/ckan/template
@@ -0,0 +1,31 @@
+# Template file for 'ckan'
+pkgname=ckan
+version=1.30.4
+revision=1
+wrksrc=CKAN-${version}
+hostmakedepends="curl mono-devel msbuild-bin libgdiplus-devel"
+depends="mono libgdiplus"
+short_desc="Comprehensive Kerbal Archive Network"
+maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
+license="MIT"
+homepage="https://github.com/KSP-CKAN/CKAN"
+distfiles="https://github.com/KSP-CKAN/CKAN/archive/v${version}.tar.gz"
+checksum=7c73543bf109fd1bc7917bb1955acaab14086e709e92351d4a6b10d780d53d23
+
+do_build() {
+	./build --configuration=Release
+}
+
+do_install() {
+	  vmkdir /usr/bin/
+	  vmkdir /usr/share/applications
+	  vmkdir /usr/share/icons
+	  vmkdir /usr/lib/ckan
+	  vmkdir /usr/share/man/man1
+	  vcopy debian/ckan /usr/bin/ckan
+	  vcopy debian/ckan.desktop /usr/share/applications/ckan.desktop
+	  vcopy debian/ckan.ico /usr/share/icons/ckan.ico
+	  vlicense debian/copyright
+	  vcopy _build/ckan.exe /usr/lib/ckan/ckan.exe
+	  vcopy debian/ckan.1 /usr/share/man/man1/ckan.1
+}

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

* Re: [PR PATCH] [Updated] Add ckan
  2022-03-19  6:01 [PR PATCH] Add ckan knusbaum
@ 2022-03-19  6:02 ` knusbaum
  2022-03-19  6:04 ` New package: ckan-1.30.4 knusbaum
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: knusbaum @ 2022-03-19  6:02 UTC (permalink / raw)
  To: ml

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

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

https://github.com/knusbaum/void-packages add-ckan
https://github.com/void-linux/void-packages/pull/36220

Add ckan
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES** 



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

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

From 0c6c479ad086ab433a4485614c92072c59ae3e36 Mon Sep 17 00:00:00 2001
From: Kyle Nusbaum <KyleJNusbaum@gmail.com>
Date: Sat, 19 Mar 2022 00:59:06 -0500
Subject: [PATCH] New package: ckan-1.30.4

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

diff --git a/srcpkgs/ckan/template b/srcpkgs/ckan/template
new file mode 100644
index 000000000000..8da141362ed4
--- /dev/null
+++ b/srcpkgs/ckan/template
@@ -0,0 +1,31 @@
+# Template file for 'ckan'
+pkgname=ckan
+version=1.30.4
+revision=1
+wrksrc=CKAN-${version}
+hostmakedepends="curl mono-devel msbuild-bin libgdiplus-devel"
+depends="mono libgdiplus"
+short_desc="Comprehensive Kerbal Archive Network"
+maintainer="Kyle Nusbaum <knusbaum+void@sdf.org>"
+license="MIT"
+homepage="https://github.com/KSP-CKAN/CKAN"
+distfiles="https://github.com/KSP-CKAN/CKAN/archive/v${version}.tar.gz"
+checksum=7c73543bf109fd1bc7917bb1955acaab14086e709e92351d4a6b10d780d53d23
+
+do_build() {
+	./build --configuration=Release
+}
+
+do_install() {
+	  vmkdir /usr/bin/
+	  vmkdir /usr/share/applications
+	  vmkdir /usr/share/icons
+	  vmkdir /usr/lib/ckan
+	  vmkdir /usr/share/man/man1
+	  vcopy debian/ckan /usr/bin/ckan
+	  vcopy debian/ckan.desktop /usr/share/applications/ckan.desktop
+	  vcopy debian/ckan.ico /usr/share/icons/ckan.ico
+	  vlicense debian/copyright
+	  vcopy _build/ckan.exe /usr/lib/ckan/ckan.exe
+	  vcopy debian/ckan.1 /usr/share/man/man1/ckan.1
+}

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

* Re: New package: ckan-1.30.4 
  2022-03-19  6:01 [PR PATCH] Add ckan knusbaum
  2022-03-19  6:02 ` [PR PATCH] [Updated] " knusbaum
@ 2022-03-19  6:04 ` knusbaum
  2022-03-22  8:09 ` 0x5c
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: knusbaum @ 2022-03-19  6:04 UTC (permalink / raw)
  To: ml

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

New comment by knusbaum on void-packages repository

https://github.com/void-linux/void-packages/pull/36220#issuecomment-1072949960

Comment:
Not sure if this program is too niche to be worth void resources, but I use it and have this template.

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

* Re: New package: ckan-1.30.4 
  2022-03-19  6:01 [PR PATCH] Add ckan knusbaum
  2022-03-19  6:02 ` [PR PATCH] [Updated] " knusbaum
  2022-03-19  6:04 ` New package: ckan-1.30.4 knusbaum
@ 2022-03-22  8:09 ` 0x5c
  2022-06-29  2:15 ` github-actions
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: 0x5c @ 2022-03-22  8:09 UTC (permalink / raw)
  To: ml

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

New comment by 0x5c on void-packages repository

https://github.com/void-linux/void-packages/pull/36220#issuecomment-1074857154

Comment:
Duplicate of #35713

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

* Re: New package: ckan-1.30.4 
  2022-03-19  6:01 [PR PATCH] Add ckan knusbaum
                   ` (2 preceding siblings ...)
  2022-03-22  8:09 ` 0x5c
@ 2022-06-29  2:15 ` github-actions
  2022-07-02 23:12 ` classabbyamp
  2022-07-02 23:12 ` [PR PATCH] [Closed]: " classabbyamp
  5 siblings, 0 replies; 7+ messages in thread
From: github-actions @ 2022-06-29  2:15 UTC (permalink / raw)
  To: ml

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

New comment by github-actions[bot] on void-packages repository

https://github.com/void-linux/void-packages/pull/36220#issuecomment-1169458566

Comment:
Pull Requests become stale 90 days after last activity and are closed 14 days after that.  If this pull request is still relevant bump it or assign it.

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

* Re: New package: ckan-1.30.4 
  2022-03-19  6:01 [PR PATCH] Add ckan knusbaum
                   ` (3 preceding siblings ...)
  2022-06-29  2:15 ` github-actions
@ 2022-07-02 23:12 ` classabbyamp
  2022-07-02 23:12 ` [PR PATCH] [Closed]: " classabbyamp
  5 siblings, 0 replies; 7+ messages in thread
From: classabbyamp @ 2022-07-02 23:12 UTC (permalink / raw)
  To: ml

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

New comment by classabbyamp on void-packages repository

https://github.com/void-linux/void-packages/pull/36220#issuecomment-1172976588

Comment:
superceded by #35713

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

* Re: [PR PATCH] [Closed]: New package: ckan-1.30.4 
  2022-03-19  6:01 [PR PATCH] Add ckan knusbaum
                   ` (4 preceding siblings ...)
  2022-07-02 23:12 ` classabbyamp
@ 2022-07-02 23:12 ` classabbyamp
  5 siblings, 0 replies; 7+ messages in thread
From: classabbyamp @ 2022-07-02 23:12 UTC (permalink / raw)
  To: ml

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

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

New package: ckan-1.30.4 
https://github.com/void-linux/void-packages/pull/36220

Description:
<!-- 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 [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements): **YES** 



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

end of thread, other threads:[~2022-07-02 23:12 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-19  6:01 [PR PATCH] Add ckan knusbaum
2022-03-19  6:02 ` [PR PATCH] [Updated] " knusbaum
2022-03-19  6:04 ` New package: ckan-1.30.4 knusbaum
2022-03-22  8:09 ` 0x5c
2022-06-29  2:15 ` github-actions
2022-07-02 23:12 ` classabbyamp
2022-07-02 23:12 ` [PR PATCH] [Closed]: " classabbyamp

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