Compare commits
10 Commits
6062877389
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
bcd9cae33b
|
|||
|
|
6de6e6d30c | ||
|
|
a26b190215 | ||
|
|
13b2365677 | ||
|
|
6c2f2e52f2 | ||
|
|
67ccebc1d4 | ||
|
|
50e597e1a2 | ||
|
|
2c43ce7985 | ||
|
|
44846f368d | ||
|
|
c4db87afe3 |
10
.SRCINFO
10
.SRCINFO
@@ -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
|
||||
|
||||
|
||||
15
.gitea/workflows/build.yml
Normal file
15
.gitea/workflows/build.yml
Normal 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 }}
|
||||
17
PKGBUILD
17
PKGBUILD
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user