initial import

This commit is contained in:
2025-06-22 20:39:04 -05:00
commit f8a70886f0
3428 changed files with 302546 additions and 0 deletions

35
perl-parse-yapp/LICENSE Normal file
View File

@@ -0,0 +1,35 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Parse-Yapp
Upstream-Contact: William N. Braswell, Jr. <wbraswell_cpan@nym.hush.com>
Source: https://metacpan.org/release/Parse-Yapp
Files: *
Copyright: © 1998-2001, Francois Desarmenien <francois@fdesar.net>
© 2017 William N. Braswell, Jr. <wbraswell_cpan@nym.hush.com>
License: Artistic or GPL-1+
Files: debian/*
Copyright:
© 1999-2003, Ardo van Rangelrooij <ardo@debian.org>
© 2003, Jaldhar H. Vyas <jaldhar@debian.org>
© 2004, Luk Claes <luk.claes@ugent.be>
© 2005-2007, Jay Bonci <jaybonci@debian.org>
© 2010, Ansgar Burchardt <ansgar@debian.org>
© 2017, gregor herrmann <gregoa@debian.org>
License: Artistic or GPL-1+
License: Artistic
This program is free software; you can redistribute it and/or modify
it under the terms of the Artistic License, which comes with Perl.
.
On Debian systems, the complete text of the Artistic License can be
found in `/usr/share/common-licenses/Artistic'.
License: GPL-1+
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 1, or (at your option)
any later version.
.
On Debian systems, the complete text of version 1 of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL-1'.

47
perl-parse-yapp/PKGBUILD Normal file
View File

@@ -0,0 +1,47 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-parse-yapp
pkgver=1.21
_debver=1.21
_debrel=2
pkgrel=1
pkgdesc='Perl/CPAN Module Parse::Yapp : Generates OO LALR parser modules'
arch=('any')
url='https://search.cpan.org/dist/Parse-Yapp'
license=('GPL-1')
depends=('perl')
makedepends=('quilt')
source=("https://cpan.metacpan.org/authors/id/W/WB/WBRASWELL/Parse-Yapp-$pkgver.tar.gz"
"https://deb.debian.org/debian/pool/main/libp/libparse-yapp-perl/libparse-yapp-perl_$_debver-$_debrel.debian.tar.xz"
"LICENSE")
sha512sums=('dbf6182d4813ff7e355ea1713c748bfdf8290040a93f123acec645c7a1733fe457ab6e0ab51c4ec83cf82bc43d7fb35cbf89875df7b5c2ffc9635e85458cfeee'
'ca94d2c46469eafc27e8a03cdb03aa19ab1e86841ba2dd05c75633e7f96f563337304a0f88bc3cada50743f1f69334e1103bd5c85cf3f2a311350aa2f4ad5d32'
'd93491d6be05ecb4ccd27ae56915562d81ba436486a36c7b4e4d48608db98f9be1bb5f795cac9ba9ad9e9789c28b48d92373f3dc18a23e087149f0a6f04b67d9')
prepare() {
cd "$srcdir"/Parse-Yapp-$pkgver
if [[ ${pkgver%.*} = ${_debver%.*} ]]; then
# Debian patches
export QUILT_PATCHES=debian/patches
export QUILT_REFRESH_ARGS='-p ab --no-timestamps --no-index'
export QUILT_DIFF_ARGS='--no-timestamps'
mv "$srcdir"/debian .
quilt push -av
fi
}
build() {
cd "$srcdir"/Parse-Yapp-$pkgver
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "$srcdir"/Parse-Yapp-$pkgver
make install DESTDIR="$pkgdir"
find "$pkgdir" -name '.packlist' -delete
find "$pkgdir" -name '*.pod' -delete
install -Dm644 "${srcdir}/LICENSE" -t "${pkgdir}/usr/share/licenses/$pkgname"
}