~alpine/aports

This thread contains a patchset. You're looking at the original emails, but you may wish to use the patch review UI. Review patch
6 5

[PATCH v3 1/3] testing/hledger: new aport

Dhruvin Gandhi <contact@dhruvin.dev>
Details
Message ID
<20211213061936.11940-1-contact@dhruvin.dev>
DKIM signature
missing
Download raw message
Patch: +37 -0
---
 testing/hledger/APKBUILD | 37 +++++++++++++++++++++++++++++++++++++
 1 file changed, 37 insertions(+)
 create mode 100644 testing/hledger/APKBUILD

diff --git a/testing/hledger/APKBUILD b/testing/hledger/APKBUILD
new file mode 100644
index 0000000000..4b88c431a2
--- /dev/null
+++ b/testing/hledger/APKBUILD
@@ -0,0 +1,37 @@
# Contributor: Dhruvin Gandhi <contact@dhruvin.dev>
# Maintainer: Dhruvin Gandhi <contact@dhruvin.dev>
pkgname=hledger
pkgver=1.24.1
pkgrel=0
pkgdesc="Command-line interface for the hledger accounting system"
url="https://hledger.org/hledger.html"
arch="x86_64" # limited by ghc
license="GPL-3.0-only"
makedepends="ghc cabal libffi-dev ncurses-dev"
subpackages="$pkgname-doc $pkgname-bash-completion"
source="https://hackage.haskell.org/package/hledger-$pkgver/hledger-$pkgver.tar.gz"

export CABAL_DIR="$srcdir"/cabal

build() {
	cabal update
	cabal build --prefix=/usr --enable-relocatable
}

check() {
	cabal test
}

package() {
	local ghcver=$(ghc --version | cut -d " " -f 8)
	install -Dm755 \
		"dist-newstyle/build/$arch-linux/ghc-$ghcver/$pkgname-$pkgver/x/$pkgname/build/$pkgname/$pkgname" \
		"$pkgdir"/usr/bin/$pkgname
	install -Dm644 $pkgname.1 "$pkgdir"/usr/share/man/man1/$pkgname.1
	install -Dm644 shell-completion/$pkgname-completion.bash \
		"$pkgdir"/usr/share/bash-completion/completions/$pkgname
}

sha512sums="
0941258f7c6f699967261eaf9e20c1f81f6694b8f559ac1e729f37cff64dce3b787447f69c222115437318e8ccd6c4273e52befa41b3419f8fb4cc131c7fcdf7  hledger-1.24.1.tar.gz
"
-- 
2.34.1

[PATCH v3 2/3] testing/hledger-ui: new aport

Dhruvin Gandhi <contact@dhruvin.dev>
Details
Message ID
<20211213061936.11940-2-contact@dhruvin.dev>
In-Reply-To
<20211213061936.11940-1-contact@dhruvin.dev> (view parent)
DKIM signature
missing
Download raw message
Patch: +35 -0
---
 testing/hledger-ui/APKBUILD | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 testing/hledger-ui/APKBUILD

diff --git a/testing/hledger-ui/APKBUILD b/testing/hledger-ui/APKBUILD
new file mode 100644
index 0000000000..1930eed76b
--- /dev/null
+++ b/testing/hledger-ui/APKBUILD
@@ -0,0 +1,35 @@
# Contributor: Dhruvin Gandhi <contact@dhruvin.dev>
# Maintainer: Dhruvin Gandhi <contact@dhruvin.dev>
pkgname=hledger-ui
pkgver=1.24.1
pkgrel=0
pkgdesc="Curses-style terminal interface for the hledger accounting system"
url="https://hledger.org/hledger-ui.html"
arch="x86_64" # limited by ghc
license="GPL-3.0-only"
makedepends="ghc cabal libffi-dev ncurses-dev"
subpackages="$pkgname-doc"
source="https://hackage.haskell.org/package/hledger-ui-$pkgver/hledger-ui-$pkgver.tar.gz"

export CABAL_DIR="$srcdir"/cabal

build() {
	cabal update
	cabal build --prefix=/usr --enable-relocatable
}

check() {
	cabal test
}

package() {
	local ghcver=$(ghc --version | cut -d " " -f 8)
	install -Dm755 \
		"dist-newstyle/build/$arch-linux/ghc-$ghcver/$pkgname-$pkgver/x/$pkgname/build/$pkgname/$pkgname" \
		"$pkgdir"/usr/bin/$pkgname
	install -Dm644 $pkgname.1 "$pkgdir"/usr/share/man/man1/$pkgname.1
}

sha512sums="
9a71ba18c76a477a12df34adb4d1d11e5a72769b14e27950ff675107faf210dbe9ee18d4e6bf13151789f73591e72b62fb7f3ea581a2ddff6457814d9220f4d4  hledger-ui-1.24.1.tar.gz
"
-- 
2.34.1

[PATCH v3 3/3] testing/hledger-web: new aport

Dhruvin Gandhi <contact@dhruvin.dev>
Details
Message ID
<20211213061936.11940-3-contact@dhruvin.dev>
In-Reply-To
<20211213061936.11940-1-contact@dhruvin.dev> (view parent)
DKIM signature
missing
Download raw message
Patch: +35 -0
---
 testing/hledger-web/APKBUILD | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)
 create mode 100644 testing/hledger-web/APKBUILD

diff --git a/testing/hledger-web/APKBUILD b/testing/hledger-web/APKBUILD
new file mode 100644
index 0000000000..e3b5252b92
--- /dev/null
+++ b/testing/hledger-web/APKBUILD
@@ -0,0 +1,35 @@
# Contributor: Dhruvin Gandhi <contact@dhruvin.dev>
# Maintainer: Dhruvin Gandhi <contact@dhruvin.dev>
pkgname=hledger-web
pkgver=1.24.1
pkgrel=0
pkgdesc="Web interface for the hledger accounting system"
url="https://hledger.org/hledger-web.html"
arch="x86_64" # limited by ghc
license="GPL-3.0-only"
makedepends="ghc cabal libffi-dev ncurses-dev zlib-dev"
subpackages="$pkgname-doc"
source="https://hackage.haskell.org/package/hledger-web-$pkgver/hledger-web-$pkgver.tar.gz"

export CABAL_DIR="$srcdir"/cabal

build() {
	cabal update
	cabal build --prefix=/usr --enable-relocatable
}

check() {
	cabal test
}

package() {
	local ghcver=$(ghc --version | cut -d " " -f 8)
	install -Dm755 \
		"dist-newstyle/build/$arch-linux/ghc-$ghcver/$pkgname-$pkgver/x/$pkgname/build/$pkgname/$pkgname" \
		"$pkgdir"/usr/bin/$pkgname
	install -Dm644 $pkgname.1 "$pkgdir"/usr/share/man/man1/$pkgname.1
}

sha512sums="
49e6292faad4a1311d1af950a98a546e6ec61f5dfa97539e62a806e63bbd43351861ab4c45f8eb7284e98367fb92e206a217e998c6572ca8b2f37e91bb93daaf  hledger-web-1.24.1.tar.gz
"
-- 
2.34.1
Details
Message ID
<163939536071.14324.7346020145477682594.gitlab.28415.84915e6174e3a4c41b950b8859dd63325534c736@listserv.local>
In-Reply-To
<20211213061936.11940-1-contact@dhruvin.dev> (view parent)
DKIM signature
missing
Download raw message
It would be nice if you could use the `--reroll-count` option to format-patch in the future for new revisions, now it's more difficult to distinguish what's the latest version

-- 
via https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/28415#note_198193
Details
Message ID
<CAO54GHDxESVsxWipxPYrV04Vg0UY5Y+bjvNtDwUY9iYW4oaQiA@mail.gmail.com>
In-Reply-To
<163939536071.14324.7346020145477682594.gitlab.28415.84915e6174e3a4c41b950b8859dd63325534c736@listserv.local> (view parent)
DKIM signature
missing
Download raw message
Sorry, I see just now that you did use that, it just does not get
marked as such in the merge requests.

On Mon, Dec 13, 2021 at 12:36 PM Kevin Daudt
<no-reply@dispatch.alpinelinux.org> wrote:
>
> It would be nice if you could use the `--reroll-count` option to format-patch in the future for new revisions, now it's more difficult to distinguish what's the latest version
>
> --
> via https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/28415#note_198193
Details
Message ID
<163939582189.14324.3459017382725591614.gitlab.28415.84915e6174e3a4c41b950b8859dd63325534c736@listserv.local>
In-Reply-To
<163939536071.14324.7346020145477682594.gitlab.28415.84915e6174e3a4c41b950b8859dd63325534c736@listserv.local> (view parent)
DKIM signature
missing
Download raw message
Kevin Daudt <kdaudt@alpinelinux.org> replied via email:

```
Sorry, I see just now that you did use that, it just does not get
marked as such in the merge requests.

On Mon, Dec 13, 2021 at 12:36 PM Kevin Daudt
<no-reply@dispatch.alpinelinux.org> wrote:
>
> It would be nice if you could use the `--reroll-count` option to format-patch in the future for new revisions, now it's more difficult to distinguish what's the latest version
>
> --
> via https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/28415#note_198193

```

-- 
via https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/28415#note_198198
Details
Message ID
<163947345492.14324.14617996384551331055.gitlab.28415.077f3148b5c6a99a3c8b190ccf276043f180ba3d@listserv.local>
In-Reply-To
<20211213061936.11940-1-contact@dhruvin.dev> (view parent)
DKIM signature
missing
Download raw message
Superseded by !28448

-- 
via https://gitlab.alpinelinux.org/alpine/aports/-/merge_requests/28415#note_198392
Reply to thread Export thread (mbox)