Compare commits

..

10 Commits

Author SHA1 Message Date
bcd9cae33b Feat: add build workflow
All checks were successful
Build package / build-package (push) Successful in 1m26s
2025-10-01 20:11:20 +08:00
Luiz Amaral
6de6e6d30c upgpkg: dh-make 2.202503-1 2025-06-16 12:06:11 +02:00
Luiz Amaral
a26b190215 upgpkg: dh-make 2.202304-1 2024-03-30 22:06:06 +01:00
Luiz Amaral
13b2365677 upgpkg: dh-make 2.202303-1 2023-11-08 10:32:29 +01:00
peeweep
6c2f2e52f2 change source to salsa.debian.org 2021-12-15 15:16:42 +08:00
Luca Weiss
67ccebc1d4 upgpkg: dh-make 2.202102-1
upstream release
2021-10-31 14:57:36 +01:00
Luca Weiss
50e597e1a2 upgpkg: dh-make 2.202003-1
upstream release
2021-01-05 23:19:46 +01:00
Luca Weiss
2c43ce7985 upgpkg: dh-make 2.202002-1
upstream release
2020-09-06 12:42:51 +02:00
Luca Weiss
44846f368d upgpkg: dh-make 2.202001-1
upstream release
2020-03-05 12:16:43 +01:00
Luca Weiss
c4db87afe3 upgpkg: dh-make 2.201903-1
upstream release
2019-11-14 20:04:42 +01:00
3 changed files with 30 additions and 12 deletions

View File

@@ -1,15 +1,15 @@
pkgbase = dh-make
pkgdesc = Tool that converts source archives into Debian package source
pkgver = 2.201902
pkgver = 2.202503
pkgrel = 1
url = http://packages.debian.org/sid/dh-make
url = https://salsa.debian.org/debian/dh-make
arch = any
license = GPL
makedepends = git
depends = dpkg
depends = make
depends = python
source = https://deb.debian.org/debian/pool/main/d/dh-make/dh-make_2.201902.tar.xz
sha256sums = f19a9d52f657db577798acf7b8411fe82b2ede3093ad6487cad8821cb5819e98
source = git+https://salsa.debian.org/debian/dh-make.git#tag=debian/2.202503
sha512sums = c0d3e9de84c67948a42dde33c5bcc576f05c603614f7cb52af727f99625438b37a33d662a0f4f4d802eca31bcf448ac3b0c7325b54f55ab87cdd1f11c1f43635
pkgname = dh-make

View File

@@ -0,0 +1,15 @@
name: Build package
on: [push]
jobs:
build-package:
runs-on: pkgbuilder
env:
steps:
- name: Build and push package
uses: https://gitea.konchin.com/action/archbuild@main
with:
minio-accesskey: ${{ secrets.MINIO_ACCESSKEY }}
minio-secretkey: ${{ secrets.MINIO_SECRETKEY }}
gpg-password: ${{ secrets.GPG_PASSWORD }}
gpg-keygrip: ${{ secrets.GPG_KEYGRIP }}

View File

@@ -1,21 +1,24 @@
# Maintainer: Luca Weiss <luca (at) z3ntu (dot) xyz>
# Maintainer: Luiz Amaral <email at luiz dot eng dot br>
# Contributor: peeweep at 0x0 dot ee
# Contributor: Luca Weiss <luca (at) z3ntu (dot) xyz>
# Contributor: Johannes Dewender arch at JonnyJD dot net
# Contributor: Bartosz Feński <fenio@debian.org>
pkgname=dh-make
pkgver=2.201902
pkgver=2.202503
pkgrel=1
pkgdesc="Tool that converts source archives into Debian package source"
arch=('any')
url="http://packages.debian.org/sid/dh-make"
url="https://salsa.debian.org/debian/dh-make"
license=('GPL')
depends=('dpkg' 'make' 'python')
source=(https://deb.debian.org/debian/pool/main/d/${pkgname}/${pkgname}_${pkgver}.tar.xz)
sha256sums=('f19a9d52f657db577798acf7b8411fe82b2ede3093ad6487cad8821cb5819e98')
makedepends=('git')
source=("git+$url.git#tag=debian/$pkgver")
sha512sums=('c0d3e9de84c67948a42dde33c5bcc576f05c603614f7cb52af727f99625438b37a33d662a0f4f4d802eca31bcf448ac3b0c7325b54f55ab87cdd1f11c1f43635')
package() {
cd "$srcdir/$pkgname-$pkgver"
install -D dh_make "$pkgdir"/usr/bin/dh_make
cd "$srcdir/$pkgname"
install -D dh_make.py "$pkgdir"/usr/bin/dh_make
install -d "$pkgdir"/usr/share/debhelper/dh_make
cp -a lib/* "$pkgdir"/usr/share/debhelper/dh_make/
install -Dm644 dh_make.1 "$pkgdir"/usr/share/man/man8/dh_make.8