Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] New package: wt-4.5.0
@ 2021-10-01 19:27 Danoloan10
  2021-10-01 19:38 ` Danoloan10
  2021-10-01 19:38 ` [PR PATCH] [Closed]: " Danoloan10
  0 siblings, 2 replies; 3+ messages in thread
From: Danoloan10 @ 2021-10-01 19:27 UTC (permalink / raw)
  To: ml

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

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

https://github.com/Danoloan10/void-packages wt
https://github.com/void-linux/void-packages/pull/33222

New package: wt-4.5.0
<!-- Mark items with [x] where applicable -->

#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
<!-- 
#### Does it build and run successfully? 
(Please choose at least one native build and, if supported, at least one cross build. More are better.)
- [x] I built this PR locally for my native architecture, (x86_64-glibc)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] i686
  - [x] x86_64-musl
  - [x] aarch64
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl
-->


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

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

From 67d6527f221e03b610ddf1ed31605834649d368f Mon Sep 17 00:00:00 2001
From: danoloan10 <danoloan10@tutanota.com>
Date: Fri, 1 Oct 2021 20:56:43 +0200
Subject: [PATCH 1/2] New package: wt-4.5.0

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

diff --git a/srcpkgs/wt/template b/srcpkgs/wt/template
new file mode 100644
index 000000000000..e8890d8ebdfa
--- /dev/null
+++ b/srcpkgs/wt/template
@@ -0,0 +1,27 @@
+# Template file for 'wt'
+pkgname=wt
+version=4.5.0
+revision=1
+build_style=cmake
+makedepends="boost-devel"
+short_desc="Wt, C++ Web Toolkit"
+maintainer="danoloan10 <danoloan10@tutanota.com>"
+license="GPL-2.0-or-later"
+homepage="https://www.webtoolkit.eu/wt"
+distfiles="https://github.com/emweb/wt/archive/refs/tags/${version}.tar.gz"
+checksum=119b1eae83285a153b9c901d3f4f25775c7a460d30b1e48242d7d2d649d61deb
+
+if [[ $XBPS_TARGET_MACHINE =~ armv6l* ]]; then
+	makedepends+=" libatomic-devel"
+	configure_args+=" -DCMAKE_CXX_FLAGS=-latomic"
+fi
+
+wt-devel_package() {
+	depends="${sourcepkg}>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/cmake
+		vmove "usr/lib/*.so"
+	}
+}

From e1f1735d4383a7c6d77fe6ea4554dce8446a6068 Mon Sep 17 00:00:00 2001
From: danoloan10 <danoloan10@tutanota.com>
Date: Fri, 1 Oct 2021 21:18:42 +0200
Subject: [PATCH 2/2] common/shlibs: wt

---
 common/shlibs | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/common/shlibs b/common/shlibs
index 8872fbfe9392..0fc87d23264f 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -79,6 +79,11 @@ libmagic.so.1 libmagic-5.12_1
 libbluetooth.so.3 libbluetooth-4.58_1
 libwmf-0.2.so.7 libwmf-0.2.8.4_1
 libwmflite-0.2.so.7 libwmf-0.2.8.4_1
+libwt.so.4.5.0 wt-4.5.0_1
+libwtdbo.so.4.5.0 wt-4.5.0_1
+libwtdbosqlite3.so.4.5.0 wt-4.5.0_1
+libwthttp.so.4.5.0 wt-4.5.0_1
+libwttest.so.4.5.0 wt-4.5.0_1
 libgthread-2.0.so.0 glib-2.70.0_1
 libglib-2.0.so.0 glib-2.70.0_1
 libgmodule-2.0.so.0 glib-2.70.0_1

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

* Re: New package: wt-4.5.0
  2021-10-01 19:27 [PR PATCH] New package: wt-4.5.0 Danoloan10
@ 2021-10-01 19:38 ` Danoloan10
  2021-10-01 19:38 ` [PR PATCH] [Closed]: " Danoloan10
  1 sibling, 0 replies; 3+ messages in thread
From: Danoloan10 @ 2021-10-01 19:38 UTC (permalink / raw)
  To: ml

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

New comment by Danoloan10 on void-packages repository

https://github.com/void-linux/void-packages/pull/33222#issuecomment-932501487

Comment:
Included in #33223 

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

* Re: [PR PATCH] [Closed]: New package: wt-4.5.0
  2021-10-01 19:27 [PR PATCH] New package: wt-4.5.0 Danoloan10
  2021-10-01 19:38 ` Danoloan10
@ 2021-10-01 19:38 ` Danoloan10
  1 sibling, 0 replies; 3+ messages in thread
From: Danoloan10 @ 2021-10-01 19:38 UTC (permalink / raw)
  To: ml

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

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

New package: wt-4.5.0
https://github.com/void-linux/void-packages/pull/33222

Description:
<!-- Mark items with [x] where applicable -->
Wt is a C++ web framework widely used in low-end systems.
#### General
- [x] This is a new package and it conforms to the [quality requirements](https://github.com/void-linux/void-packages/blob/master/Manual.md#quality-requirements)

#### Have the results of the proposed changes been tested?
- [x] I use the packages affected by the proposed changes on a regular basis and confirm this PR works for me
- [ ] I generally don't use the affected packages but briefly tested this PR

<!--
If GitHub CI cannot be used to validate the build result (for example, if the
build is likely to take several hours), make sure to
[skip CI](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration).
When skipping CI, uncomment and fill out the following section.
Note: for builds that are likely to complete in less than 2 hours, it is not
acceptable to skip CI.
-->
#### Does it build and run successfully? 
- [x] I built this PR locally for my native architecture, (x86_64-glibc)
- [x] I built this PR locally for these architectures (if supported. mark crossbuilds):
  - [x] i686
  - [x] x86_64-musl
  - [x] aarch64
  - [x] aarch64-musl
  - [x] armv7l
  - [x] armv7l-musl
  - [x] armv6l
  - [x] armv6l-musl


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

end of thread, other threads:[~2021-10-01 19:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-01 19:27 [PR PATCH] New package: wt-4.5.0 Danoloan10
2021-10-01 19:38 ` Danoloan10
2021-10-01 19:38 ` [PR PATCH] [Closed]: " Danoloan10

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