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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ 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; 14+ 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] 14+ messages in thread

* Re:  New package: CKAN-1.30.4
  2022-02-20  0:18 [PR PATCH] New package: CKAN-1.30.4 ezag
                   ` (5 preceding siblings ...)
  2022-07-01 15:52 ` paper42
@ 2022-07-02 10:44 ` ezag
  6 siblings, 0 replies; 14+ messages in thread
From: ezag @ 2022-07-02 10:44 UTC (permalink / raw)
  To: ml

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

New comment by ezag on void-packages repository

https://github.com/void-linux/void-packages/pull/35713#issuecomment-1172877529

Comment:
> > I've tested the build against msbuild-bin-16.10.1 and it succeeded; so for now this PR depends on #37787

> add that commit to this PR

added

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

* Re:  New package: CKAN-1.30.4
  2022-02-20  0:18 [PR PATCH] New package: CKAN-1.30.4 ezag
                   ` (4 preceding siblings ...)
  2022-07-01 15:50 ` ezag
@ 2022-07-01 15:52 ` paper42
  2022-07-02 10:44 ` ezag
  6 siblings, 0 replies; 14+ messages in thread
From: paper42 @ 2022-07-01 15:52 UTC (permalink / raw)
  To: ml

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

New comment by paper42 on void-packages repository

https://github.com/void-linux/void-packages/pull/35713#issuecomment-1172483326

Comment:
> I've tested the build against msbuild-bin-16.10.1 and it succeeded; so for now this PR depends on https://github.com/void-linux/void-packages/pull/37787

add that commit to this PR

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

* Re:  New package: CKAN-1.30.4
  2022-02-20  0:18 [PR PATCH] New package: CKAN-1.30.4 ezag
                   ` (3 preceding siblings ...)
  2022-07-01 10:45 ` ezag
@ 2022-07-01 15:50 ` ezag
  2022-07-01 15:52 ` paper42
  2022-07-02 10:44 ` ezag
  6 siblings, 0 replies; 14+ messages in thread
From: ezag @ 2022-07-01 15:50 UTC (permalink / raw)
  To: ml

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

New comment by ezag on void-packages repository

https://github.com/void-linux/void-packages/pull/35713#issuecomment-1172481304

Comment:
I've tested the build against msbuild-bin-16.10.1 and it succeeded; so for now this PR depends on https://github.com/void-linux/void-packages/pull/37787

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

* Re:  New package: CKAN-1.30.4
  2022-02-20  0:18 [PR PATCH] New package: CKAN-1.30.4 ezag
                   ` (2 preceding siblings ...)
  2022-06-29 22:19 ` ezag
@ 2022-07-01 10:45 ` ezag
  2022-07-01 15:50 ` ezag
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 14+ messages in thread
From: ezag @ 2022-07-01 10:45 UTC (permalink / raw)
  To: ml

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

New comment by ezag on void-packages repository

https://github.com/void-linux/void-packages/pull/35713#issuecomment-1172210437

Comment:
Regarding the currently broken build:

```
"/builddir/CKAN-1.30.4/CKAN.sln" (Build target) (1) ->
"/builddir/CKAN-1.30.4/Core/CKAN-core.csproj" (default target) (2) ->
(ResolveAssemblyReferences target) -> 
  /usr/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(2101,5): error MSB3248: Parameter "AssemblyFiles" has invalid value "/usr/lib/mono/4.5-api/mscorlib.dll". Could not load file or assembly 'System.Reflection.Metadata, Version=1.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. [/builddir/CKAN-1.30.4/Core/CKAN-core.csproj]
"/builddir/CKAN-1.30.4/CKAN.sln" (Build target) (1) ->
"/builddir/CKAN-1.30.4/AutoUpdate/CKAN-autoupdate.csproj" (default target) (3) ->
  /usr/lib/mono/msbuild/Current/bin/Microsoft.Common.CurrentVersion.targets(2101,5): error MSB3248: Parameter "AssemblyFiles" has invalid value "/usr/lib/mono/4.5-api/mscorlib.dll". Could not load file or assembly 'System.Reflection.Metadata, Version=1.4.3.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. [/builddir/CKAN-1.30.4/AutoUpdate/CKAN-autoupdate.csproj]
```

There is a thread related to this issue: https://github.com/KSP-CKAN/CKAN/issues/3361

I'm going to try upgrading [msbuild-bin](https://github.com/void-linux/void-packages/blob/master/srcpkgs/msbuild-bin/template) from 16.6 to 16.9 so that is does match the current 6.12 [mono](https://github.com/void-linux/void-packages/blob/master/srcpkgs/mono/template) version according to the official [Mono Versioning](https://www.mono-project.com/docs/about-mono/versioning/#mono-source-versioning) table, and see if that will fix the issue.

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

* Re:  New package: CKAN-1.30.4
  2022-02-20  0:18 [PR PATCH] New package: CKAN-1.30.4 ezag
  2022-06-25  2:15 ` github-actions
  2022-06-26 10:52 ` ezag
@ 2022-06-29 22:19 ` ezag
  2022-07-01 10:45 ` ezag
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 14+ messages in thread
From: ezag @ 2022-06-29 22:19 UTC (permalink / raw)
  To: ml

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

New comment by ezag on void-packages repository

https://github.com/void-linux/void-packages/pull/35713#issuecomment-1170552620

Comment:
@classabbyamp rebased and got build errors (possibly due to updated dependencies); I'll look into it.

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

* Re:  New package: CKAN-1.30.4
  2022-02-20  0:18 [PR PATCH] New package: CKAN-1.30.4 ezag
  2022-06-25  2:15 ` github-actions
@ 2022-06-26 10:52 ` ezag
  2022-06-29 22:19 ` ezag
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 14+ messages in thread
From: ezag @ 2022-06-26 10:52 UTC (permalink / raw)
  To: ml

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

New comment by ezag on void-packages repository

https://github.com/void-linux/void-packages/pull/35713#issuecomment-1166492423

Comment:
bump - still up-to-date

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

* Re:  New package: CKAN-1.30.4
  2022-02-20  0:18 [PR PATCH] New package: CKAN-1.30.4 ezag
@ 2022-06-25  2:15 ` github-actions
  2022-06-26 10:52 ` ezag
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 14+ messages in thread
From: github-actions @ 2022-06-25  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/35713#issuecomment-1166172006

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] 14+ messages in thread

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

Thread overview: 14+ 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
  -- strict thread matches above, loose matches on Subject: below --
2022-02-20  0:18 [PR PATCH] New package: CKAN-1.30.4 ezag
2022-06-25  2:15 ` github-actions
2022-06-26 10:52 ` ezag
2022-06-29 22:19 ` ezag
2022-07-01 10:45 ` ezag
2022-07-01 15:50 ` ezag
2022-07-01 15:52 ` paper42
2022-07-02 10:44 ` ezag

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