Version bump 1.5.0, build from git repository directly
This commit is contained in:
@@ -5,8 +5,12 @@ Version 1.5
|
|||||||
-----------
|
-----------
|
||||||
|
|
||||||
* Project
|
* Project
|
||||||
|
* PKGBUILD: build from git repository directly
|
||||||
|
|
||||||
* Rename pacmanconf module to pacman
|
* Rename pacmanconf module to pacman
|
||||||
|
|
||||||
* Add config file to /etc
|
* Add config file to /etc
|
||||||
|
|
||||||
* Add pug2 script
|
* Add pug2 script
|
||||||
|
|
||||||
Version 1.4
|
Version 1.4
|
||||||
|
18
PKGBUILD
18
PKGBUILD
@@ -1,21 +1,20 @@
|
|||||||
# Maintainer: Eric Torres <erictorres4@protonmail.com>
|
# Maintainer: Eric Torres <erictorres4@protonmail.com>
|
||||||
pkgname=packaging-scripts
|
pkgname=packaging-scripts
|
||||||
pkgver=1.4
|
pkgver=1.5
|
||||||
pkgrel=2
|
pkgrel=1
|
||||||
pkgdesc="A set of helper scripts for handling Arch Linux packages"
|
pkgdesc="A set of helper scripts for handling Arch Linux packages"
|
||||||
arch=('any')
|
arch=('any')
|
||||||
license=('MIT')
|
license=('MIT')
|
||||||
groups=('pacman-helpers')
|
groups=(pacman-helpers)
|
||||||
depends=('pacman' 'python>=3.6')
|
depends=(pacman python pacman-contrib)
|
||||||
makedepends=('git' 'python-setuptools')
|
makedepends=(git python-setuptools)
|
||||||
optdepends=('fzf: for the fqo script'
|
optdepends=('fzf: for the fqo script'
|
||||||
'mlocate: for the fqo script')
|
'mlocate: for the fqo script')
|
||||||
checkdepends=('python-hypothesis')
|
checkdepends=('python-hypothesis')
|
||||||
backup=(etc/apparmor.d/usr.bin.{addpkg,delpkg}
|
backup=(etc/apparmor.d/usr.bin.{addpkg,delpkg}
|
||||||
etc/packaging-scripts.conf)
|
etc/packaging-scripts.conf)
|
||||||
source=("$pkgname-$pkgver.tar.gz")
|
source=("${pkgname}::git+file:///home/etorres/Projects/packaging-scripts")
|
||||||
sha256sums=('7f235f7bc5d500ed2e9ef371678d176d4c9fdff268aac11f52f9fd4891cf8719')
|
sha256sums=('SKIP')
|
||||||
sha512sums=('74fe9fa108fd0acbfcb24ebbfa91e2aadf356f018938c6ba8fe890bb74e23d06cbfeee2114836ad501a71df7dab4460d03c4c75808f1e71e7610bd3c16a754b5')
|
|
||||||
|
|
||||||
build() {
|
build() {
|
||||||
cd "$srcdir"
|
cd "$srcdir"
|
||||||
@@ -43,6 +42,9 @@ package() {
|
|||||||
install -Dm644 "${profile}" "${pkgdir}/etc/apparmor.d/${profile##*/}"
|
install -Dm644 "${profile}" "${pkgdir}/etc/apparmor.d/${profile##*/}"
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# install pug hook
|
||||||
|
install -Dm644 'misc/pug.hook' "${pkgdir}/usr/share/libalpm/hooks"
|
||||||
|
|
||||||
# install zsh completions
|
# install zsh completions
|
||||||
install -d "${pkgdir}/usr/share/zsh/site-functions"
|
install -d "${pkgdir}/usr/share/zsh/site-functions"
|
||||||
for completion in packaging_scripts/zsh-completions/*; do
|
for completion in packaging_scripts/zsh-completions/*; do
|
||||||
|
2
setup.py
2
setup.py
@@ -16,7 +16,7 @@ with open("README.rst", "r") as fh:
|
|||||||
# ========== Package Setup ==========
|
# ========== Package Setup ==========
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="packaging_scripts",
|
name="packaging_scripts",
|
||||||
version="1.4.0",
|
version="1.5.0",
|
||||||
author="Eric Russel Torres",
|
author="Eric Russel Torres",
|
||||||
author_email="erictorres4@protonmail.com",
|
author_email="erictorres4@protonmail.com",
|
||||||
description="A set of helpers for automating borg interaction",
|
description="A set of helpers for automating borg interaction",
|
||||||
|
Reference in New Issue
Block a user