You are not logged in.
Hi, so I'm the maintainer of the mintlocale package in the AUR and I'm having issues submitting updates to the AUR.
claire ~/Builds/ArchPackages/mintlocale % mkaurball :(
==> Making package: mintlocale 1.1.7-1 (Mon 9 Jun 10:45:10 BST 2014)
==> Retrieving sources...
-> Found mintlocale_1.1.7.tar.gz
-> Found apt_pkg.patch
==> Validating source files with sha256sums...
mintlocale_1.1.7.tar.gz ... Passed
apt_pkg.patch ... Passed
==> Entering fakeroot environment...
==> Creating source package...
-> Adding PKGBUILD...
-> Adding apt_pkg.patch...
-> Compressing source package...
==> Leaving fakeroot environment.
==> Source package created: mintlocale (Mon 9 Jun 10:45:11 BST 2014)
ERROR: Expected tarball name not found: mintlocale-:1.1.7-1.src.tar.gz
claire ~/Builds/ArchPackages/mintlocale %This is the PKGBUILD for 1.1.7, which builds with makepkg -s (and the version I'm trying to submit):
# Maintainer : Claire Farron <diesal3@googlemail.com>
# Major Contributor : loqs (PKGBUILD, apt_pkg.patch)
pkgname=mintlocale
pkgver=1.1.7
pkgrel=1
epoch=
pkgdesc="Locale selection for the Cinnamon Desktop"
arch=('any')
url="https://github.com/linuxmint/mintlocale"
license=('GPL2')
depends=('python2-gobject')
source=("http://packages.linuxmint.com/pool/main/m/mintlocale/mintlocale_$pkgver.tar.gz"
"apt_pkg.patch")
sha256sums=('f452cce071622d66235305a0beeb6f33950c1d0e227cdd485d56978ec0590343'
'90b7c8ff3d414aeefebaa816e4aaa98817c37e35c98bb4c448290138e4f1a37d')
prepare() {
cd "$srcdir/$pkgname"
find -type f -print0 | xargs -0 sed -i 's@^#!.*python$@#!/usr/bin/python2@'
patch -p1 -i ../apt_pkg.patch
}
package() {
cd "$srcdir/$pkgname"
cp -r --no-preserve=owner usr $pkgdir
}Any ideas?
Last edited by clfarron4 (2014-06-09 10:13:22)
Claire is fine.
Problems? I have dysgraphia, so clear and concise please.
My public GPG key for package signing
My x86_64 package repository
Offline
Remove the epoch= line?
Offline
Remove the epoch= line?
Oh, didn't see that one XD Thanks! It worked!
Claire is fine.
Problems? I have dysgraphia, so clear and concise please.
My public GPG key for package signing
My x86_64 package repository
Offline
Offline