Compare commits

...

10 commits

Author SHA1 Message Date
8dc5456b37 upgpkg: python-schwifty 2025.1.0-1
upstream release
2025-02-26 11:09:51 +01:00
6ceac2dcd1 Add 'python-schwifty/' from commit '74624f2dbbb77228d1f3777bb3dc4a6e002de53c'
git-subtree-dir: python-schwifty
git-subtree-mainline: cec81a4f01
git-subtree-split: 74624f2dbb
2025-02-26 11:01:19 +01:00
cec81a4f01 upgpkg: nodejs-less 4.2.2-1
upstream release
2025-02-26 10:58:52 +01:00
Richard PALO
74624f2dbb try changing to hatchling builds 2025-02-25 08:58:25 +01:00
Richard PALO
6226843b5c add missing dependencies 2025-02-24 17:52:52 +01:00
Richard PALO
c7e94a8d07 update to latest.. 2024.11.0
Changed

    Removed support for deprecated Python version 3.8
    Updated the bank registries for Austria, Germany, Poland, Netherlands, Spain, Czech Republic, Italy, and Switzerland.

Added

    New French Banks @Natim
    Add modulr bank to Spanish bank registry @jose-reveni
2025-02-24 15:28:05 +01:00
Richard PALO
1486dd79ba update to 2023.03.0
Changed

    Updated generated bank registries for Austria, Belgium, Germany, Netherlands, Hungary, Slovenia and Ukraine.

Added

    New bank registry for Norway thanks to @ezet
2023-09-18 18:08:55 +02:00
Richard PALO
68a1a04bb1 just in case add setuptools and quote all depends pkgs while we're there 2022-12-30 23:25:06 +01:00
Richard PALO
0b5069d996 add missing build dependency 2022-12-30 22:44:09 +01:00
Richard PALO
70822f4cca Initial commit schwifty
https://github.com/mdomke/schwifty

Gotta get schwifty with your IBANs

schwifty is a Python library that let’s you easily work with IBANs and BICs as specified by the ISO.
IBAN is the Internation Bank Account Number and BIC the Business Identifier Code. Both are used for
international money transfer.

Features

schwifty lets you

    validate check-digits and the country specific format of IBANs

    validate format and country codes from BICs

    generate BICs from country and bank-code

    generate IBANs from country-code, bank-code and account-number.

    get the BIC associated to an IBAN’s bank-code

    access all relevant components as attributes

Latest CHANGELOG entry
2022.09.0 - 2022/16/09
Added

    IBAN validation for Senegal mkopec87

Changed

    Refactored most of the scripts to generate the bank registry to use Pandas @pebosi
    Updated bank registry for Austria, Belgium, Germany, Spain, Hungary, Netherlands and Poland.
2022-12-30 18:01:36 +01:00
4 changed files with 54 additions and 6 deletions
nodejs-less
python-schwifty

View file

@ -1,16 +1,16 @@
pkgbase = nodejs-less
pkgdesc = A standalone compiler for the LESS CSS language.
pkgver = 4.2.0
pkgver = 4.2.2
pkgrel = 1
url = http://lesscss.org/
arch = any
license = Apache-2.0
makedepends = npm
depends = nodejs
provides = lessc=4.2.0
provides = lessc=4.2.2
conflicts = lessc
replaces = lessc
source = https://registry.npmjs.org/less/-/less-4.2.0.tgz
sha256sums = 45a9c7dd34bf354a6c27ff61fcb2afc1c15dcce704b62c6e48f77b4ad53f9531
source = https://registry.npmjs.org/less/-/less-4.2.2.tgz
sha256sums = e0fdc8b941db3168ed9ec36a8cf1ea7b74ac404037852222dc30f7a9d07b88a4
pkgname = nodejs-less

View file

@ -2,7 +2,7 @@
# Contributor: Massimiliano Torromeo <massimiliano.torromeo@gmail.com
pkgname=nodejs-less
pkgver=4.2.0
pkgver=4.2.2
pkgrel=1
pkgdesc="A standalone compiler for the LESS CSS language."
arch=('any')
@ -14,7 +14,7 @@ conflicts=('lessc')
provides=("lessc=$pkgver")
replaces=('lessc')
source=("https://registry.npmjs.org/less/-/less-$pkgver.tgz")
sha256sums=('45a9c7dd34bf354a6c27ff61fcb2afc1c15dcce704b62c6e48f77b4ad53f9531')
sha256sums=('e0fdc8b941db3168ed9ec36a8cf1ea7b74ac404037852222dc30f7a9d07b88a4')
package() {
npm install -g --prefix "$pkgdir"/usr --cache "${srcdir}/npm-cache" "$srcdir"/less-$pkgver.tgz

21
python-schwifty/.SRCINFO Normal file
View file

@ -0,0 +1,21 @@
pkgbase = python-schwifty
pkgdesc = Validate/generate IBANS and BICS
pkgver = 2025.1.0
pkgrel = 1
url = http://github.com/mdomke/schwifty
arch = any
license = MIT
makedepends = python-build
makedepends = python-installer
makedepends = python-wheel
makedepends = python-hatchling
makedepends = python-hatch-vcs
depends = python>=3.9
depends = python-iso3166
depends = python-pycountry
depends = python-rstr
optdepends = python-pydantic>=2.0: data validation
source = https://files.pythonhosted.org/packages/source/s/schwifty/schwifty-2025.1.0.tar.gz
sha256sums = f492f3cbea3beb1fe0bf11a89075e6e413a5f500ee1afdb29a124a9a89b1a2ca
pkgname = python-schwifty

27
python-schwifty/PKGBUILD Normal file
View file

@ -0,0 +1,27 @@
# Maintainer: Richard PALO <richard.palo@free.fr>
# Co-Maintainer: Cedric Girard <cgirard [dot] archlinux [at] valinor [dot] fr>
pkgname=python-schwifty
_name=${pkgname#python-}
pkgver=2025.1.0
pkgrel=1
pkgdesc="Validate/generate IBANS and BICS"
arch=('any')
url="http://github.com/mdomke/schwifty"
license=('MIT')
makedepends=('python-build' 'python-installer' 'python-wheel' 'python-hatchling' 'python-hatch-vcs')
optdepends=('python-pydantic>=2.0: data validation')
depends=('python>=3.9' 'python-iso3166' 'python-pycountry' 'python-rstr')
source=(https://files.pythonhosted.org/packages/source/${_name::1}/${_name}/${_name}-${pkgver}.tar.gz)
sha256sums=('f492f3cbea3beb1fe0bf11a89075e6e413a5f500ee1afdb29a124a9a89b1a2ca')
build() {
cd "$srcdir/$_name-$pkgver"
python -m build --wheel --no-isolation
}
package() {
cd "$srcdir/$_name-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 "${srcdir}/${_name}-${pkgver}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}