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

33
perl-digest-sha1/LICENSE Normal file
View File

@@ -0,0 +1,33 @@
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Digest-SHA
Upstream-Contact: Mark Shelor <mshelor@cpan.org>
Source: https://metacpan.org/release/Digest-SHA
Files: *
Copyright: 2003-2018, Mark Shelor
License: Artistic or GPL-1+
Files: debian/*
Copyright: 2005, 2006, Gunnar Wolf <gwolf@debian.org>
2005, Allard Hoeve <allard@byte.nl>
2006, 2007, 2008, gregor herrmann <gregoa@debian.org>
2006, Niko Tyni <ntyni@iki.fi>
2008, Damyan Ivanov <dmn@debian.org>
2010-2018, Salvatore Bonaccorso <carnil@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'.

27
perl-digest-sha1/PKGBUILD Normal file
View File

@@ -0,0 +1,27 @@
# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=perl-digest-sha1
pkgver=2.13
pkgrel=1
pkgdesc="Perl interface to the SHA-1 Algorithm"
arch=('i686' 'x86_64')
license=('GPL-1')
url="https://search.cpan.org/dist/Digest-SHA1/"
depends=('perl')
options=('!emptydirs')
source=("https://www.cpan.org/authors/id/G/GA/GAAS/Digest-SHA1-$pkgver.tar.gz"
"LICENSE")
sha512sums=('44d0c57ecc7d2126a0387552e76c9204e45fba174af6ff7abc1c9ae00d549eb7370ee20948caf12fafefedec0098b8231249d14b109c53470ee1d5bf3de3305d'
'58491f57867c78fa8d6cc4abb910d3176f0027556eb33358b2ece695de42ea729a4bfa039e705786bd2c122241792373d6de8acd8e13de8d69cd43c02fc3731f')
build() {
cd Digest-SHA1-$pkgver
perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd Digest-SHA1-$pkgver
make install DESTDIR="$pkgdir"
install -Dm644 "${srcdir}/LICENSE" -t "${pkgdir}/usr/share/licenses/$pkgname"
}