Compare commits

..

11 Commits

Author SHA1 Message Date
a10be3a808 Feat: add gpg sign
All checks were successful
Build package / build-package (push) Successful in 6s
2025-07-28 03:07:53 +08:00
67b7d7dc7f Feat: add build workflow
All checks were successful
Build package / build-package (push) Successful in 15s
2025-07-26 17:26:38 +08:00
Giovanni Santini
2889fbe971 upgpkg: po-debconf 1.0.21+nmu1-1
- Version bump.
- Switch intltool package to maintained one.
2022-05-10 21:22:15 +02:00
Giovanni Santini
92e1ad440e upgpkg: po-debconf 1.0.21-1
- Version bump.
- Switching to binaries mirror
- Adding a proper gitignore
2018-12-16 15:02:23 +01:00
Giovanni Santini
5cc1d00663 upgpkg: po-debconf 1.0.20-2
The package includes only Perl scripts, so declare it as 'any'.
2016-11-12 14:28:17 +01:00
Giovanni Santini
2538fcb59f upgpkg: po-debconf 1.0.20-1 2016-11-12 09:59:25 +01:00
Giovanni Santini
e1e4493aec upgpkg: po-debconf 1.0.19-1 2016-02-10 10:40:19 +01:00
Giovanni Santini
c515805334 Merge branch 'master' of ssh+git://aur.archlinux.org/po-debconf 2015-08-28 00:10:10 +02:00
Giovanni Santini
ba36015933 Missed to update the checksums and use xz, doh 2015-08-28 00:09:35 +02:00
Giovanni Santini
355b974275 Missed to update the checksums, doh 2015-08-27 23:55:17 +02:00
Giovanni Santini
9ae2c3cd20 Update to version 1.0.18 2015-08-27 23:48:10 +02:00
3 changed files with 31 additions and 17 deletions

View File

@@ -1,17 +1,15 @@
pkgbase = po-debconf pkgbase = po-debconf
pkgdesc = Debian manage translated Debconf templates files with gettext pkgdesc = Debian manage translated Debconf templates files with gettext
pkgver = 1.0.16 pkgver = 1.0.21+nmu1
pkgrel = 3 pkgrel = 1
url = http://www.debian.org/ url = http://www.debian.org/
changelog = ChangeLog changelog = ChangeLog
arch = i686 arch = any
arch = x86_64
license = GPL license = GPL
depends = gettext depends = gettext
depends = perl depends = perl
depends = intltool-debian depends = intltool
source = http://ftp.debian.org/debian/pool/main/p/po-debconf/po-debconf_1.0.16+nmu2_all.deb source = https://deb.debian.org/debian/pool/main/p/po-debconf/po-debconf_1.0.21+nmu1_all.deb
sha256sums = aec4d18a310988aebc55a14db7e5fd0dfee6b49cca1d5aa6e7e58b8645a7d29e sha256sums = 613e31942c17b582e8c76db1077240f177f2f67bad22e5f4f8e5bee523d6f54b
pkgname = po-debconf pkgname = po-debconf

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,23 +1,24 @@
# Maintainer: Matt Corallo <aur-maint@mattcorallo.com> # Maintainer: Giovanni 'ItachiSan' Santini <giovannisantini93@yahoo.it>
# Previous maintainer: Matt Corallo <aur-maint@mattcorallo.com>
# Creator: Stéphane Marguet (Stemp) <smarguet à gmail point com> # Creator: Stéphane Marguet (Stemp) <smarguet à gmail point com>
# Contributer: Toni Foerster <stonerl@skeps.de>, André Klitzing <aklitzing@online.de> # Contributer: Toni Foerster <stonerl@skeps.de>, André Klitzing <aklitzing@online.de>
pkgname=po-debconf pkgname=po-debconf
pkgver=1.0.16 pkgver=1.0.21+nmu1
pkgrel=3 pkgrel=1
pkgdesc="Debian manage translated Debconf templates files with gettext" pkgdesc="Debian manage translated Debconf templates files with gettext"
arch=('i686' 'x86_64') arch=('any')
url="http://www.debian.org/" url="http://www.debian.org/"
license=('GPL') license=('GPL')
changelog=ChangeLog changelog=ChangeLog
depends=('gettext' 'perl' 'intltool-debian') depends=(gettext perl intltool)
source=(http://ftp.debian.org/debian/pool/main/p/po-debconf/${pkgname}_${pkgver}+nmu2_all.deb) source=(https://deb.debian.org/debian/pool/main/p/po-debconf/${pkgname}_${pkgver}_all.deb)
sha256sums=('aec4d18a310988aebc55a14db7e5fd0dfee6b49cca1d5aa6e7e58b8645a7d29e') sha256sums=('613e31942c17b582e8c76db1077240f177f2f67bad22e5f4f8e5bee523d6f54b')
build() { build() {
cd $srcdir cd $srcdir
ar -x $srcdir/${pkgname}_${pkgver}+nmu2_all.deb data.tar.gz ar -x $srcdir/${pkgname}_${pkgver}_all.deb data.tar.xz
tar -zxf $srcdir/data.tar.gz tar -xJf $srcdir/data.tar.xz
} }
package() { package() {