Compare commits
No commits in common. "b421f07277f66a2592a37ad265284d99ba41a6e0" and "96c9050a2d6c71f574dc1cffb7c23eef387cdbbc" have entirely different histories.
b421f07277
...
96c9050a2d
24
kicost-git/.SRCINFO
Normal file
24
kicost-git/.SRCINFO
Normal file
@ -0,0 +1,24 @@
|
||||
pkgbase = kicost-git
|
||||
pkgdesc = Build cost spreadsheet for a KiCad project
|
||||
pkgver = 1.1.6.r1.227f246
|
||||
pkgrel = 1
|
||||
url = https://github.com/hildogjr/KiCost
|
||||
arch = any
|
||||
license = MIT
|
||||
makedepends = git
|
||||
makedepends = python-setuptools
|
||||
depends = python
|
||||
depends = python-beautifulsoup4
|
||||
depends = python-lxml
|
||||
depends = python-xlsxwriter
|
||||
depends = python-tqdm
|
||||
depends = python-requests
|
||||
depends = python-validators
|
||||
depends = python-wxpython
|
||||
depends = python-colorama
|
||||
provides = kicost
|
||||
conflicts = kicost
|
||||
source = git+https://github.com/hildogjr/KiCost.git
|
||||
sha256sums = SKIP
|
||||
|
||||
pkgname = kicost-git
|
5
kicost-git/.gitignore
vendored
Normal file
5
kicost-git/.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
*
|
||||
|
||||
!.gitignore
|
||||
!PKGBUILD
|
||||
!.SRCINFO
|
46
kicost-git/PKGBUILD
Normal file
46
kicost-git/PKGBUILD
Normal file
@ -0,0 +1,46 @@
|
||||
# Maintainer: rhssk <rhssk@posteo.eu>
|
||||
pkgname=kicost-git
|
||||
_remotename=KiCost
|
||||
pkgver=1.1.6.r1.227f246
|
||||
pkgrel=1
|
||||
pkgdesc="Build cost spreadsheet for a KiCad project"
|
||||
url="https://github.com/hildogjr/KiCost"
|
||||
depends=(
|
||||
python
|
||||
python-beautifulsoup4
|
||||
python-lxml
|
||||
python-xlsxwriter
|
||||
python-tqdm
|
||||
python-requests
|
||||
python-validators
|
||||
python-wxpython
|
||||
python-colorama
|
||||
)
|
||||
makedepends=(
|
||||
git
|
||||
python-setuptools
|
||||
)
|
||||
provides=("${pkgname%-git}")
|
||||
conflicts=("${pkgname%-git}")
|
||||
license=('MIT')
|
||||
arch=('any')
|
||||
source=('git+https://github.com/hildogjr/KiCost.git')
|
||||
sha256sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd "$_remotename"
|
||||
|
||||
printf "%s" "$(git describe --long | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g')"
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$_remotename"
|
||||
|
||||
python -m unittest tests.test_kicost
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$_remotename"
|
||||
|
||||
python setup.py install --root="$pkgdir" --optimize=1
|
||||
}
|
18
kpeoplevcard-git/.SRCINFO
Normal file
18
kpeoplevcard-git/.SRCINFO
Normal file
@ -0,0 +1,18 @@
|
||||
pkgbase = kpeoplevcard-git
|
||||
pkgdesc = KPeople VCard Support
|
||||
pkgver = r38.32d50a9
|
||||
pkgrel = 1
|
||||
url = https://phabricator.kde.org/source/kpeoplevcard/
|
||||
arch = x86_64
|
||||
license = GPL
|
||||
makedepends = git
|
||||
makedepends = extra-cmake-modules
|
||||
depends = kpeople
|
||||
depends = kcontacts
|
||||
provides = kpeoplevcard
|
||||
conflicts = kpeoplevcard
|
||||
source = git+git://anongit.kde.org/kpeoplevcard
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = kpeoplevcard-git
|
||||
|
4
kpeoplevcard-git/.gitignore
vendored
Normal file
4
kpeoplevcard-git/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
*
|
||||
!/PKGBUILD
|
||||
!/.SRCINFO
|
||||
!/.gitignore
|
35
kpeoplevcard-git/PKGBUILD
Normal file
35
kpeoplevcard-git/PKGBUILD
Normal file
@ -0,0 +1,35 @@
|
||||
# Maintainer: Rihards Skuja <rhssk at posteo eu>
|
||||
_pkgname=kpeoplevcard
|
||||
pkgname=$_pkgname-git
|
||||
pkgver=r38.32d50a9
|
||||
pkgrel=1
|
||||
pkgdesc="KPeople VCard Support"
|
||||
arch=(x86_64)
|
||||
url="https://phabricator.kde.org/source/$_pkgname/"
|
||||
license=("GPL")
|
||||
depends=(kpeople kcontacts)
|
||||
makedepends=(git extra-cmake-modules)
|
||||
provides=($_pkgname)
|
||||
conflicts=($_pkgname)
|
||||
source=("git+git://anongit.kde.org/$_pkgname")
|
||||
md5sums=("SKIP")
|
||||
|
||||
pkgver() {
|
||||
cd $_pkgname
|
||||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||
}
|
||||
|
||||
prepare() {
|
||||
mkdir -p build
|
||||
}
|
||||
|
||||
build() {
|
||||
cd build
|
||||
cmake ../$_pkgname
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd build
|
||||
make DESTDIR="$pkgdir/" install
|
||||
}
|
Loading…
Reference in New Issue
Block a user