summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2023-05-29 10:44:28 -0400
committerDavid P <megver83@parabola.nu>2023-05-29 10:44:28 -0400
commit4d8ef6cc7ff2ecc3e8d37b398df9ba9b8cb29e9b (patch)
treeb8cc8756790dafd345cbc15e03685d027ab9a290
parentf398245c7558e52a030d705274f4107bc7afd9fb (diff)
remove pcr/netifrc and pcr/gentoo-functions
Signed-off-by: David P <megver83@parabola.nu>
-rw-r--r--pcr/gentoo-functions/PKGBUILD32
-rw-r--r--pcr/netifrc/PKGBUILD48
2 files changed, 0 insertions, 80 deletions
diff --git a/pcr/gentoo-functions/PKGBUILD b/pcr/gentoo-functions/PKGBUILD
deleted file mode 100644
index 4a98f9254..000000000
--- a/pcr/gentoo-functions/PKGBUILD
+++ /dev/null
@@ -1,32 +0,0 @@
-# Contributor: artoo <artoo@manjaro.org>
-# Contributor: williamh <williamh@gentoo.org>
-# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-# Contributor: Luke Shumaker <lukeshu@parabola.nu>
-
-# Gentoo's ebuild file:
-# https://gitweb.gentoo.org/repo/gentoo.git/tree/sys-apps/gentoo-functions/gentoo-functions-9999.ebuild
-
-pkgname=gentoo-functions
-pkgver=0.17
-pkgrel=1
-pkgdesc="Base functions for Gentoo systems"
-arch=(armv7h i686 x86_64)
-url=https://gitweb.gentoo.org/proj/gentoo-functions
-license=(GPL2)
-source=(https://gitweb.gentoo.org/proj/gentoo-functions.git/snapshot/gentoo-functions-0.17.tar.gz)
-sha256sums=('721352753031f3214e5034ae12bc2fcc04b4b29bafcc22dab3c473afd9f33c99')
-
-_makeargs=(
- ROOTPREFIX=/usr
- ROOTSBINDIR=/usr/bin
-)
-
-build(){
- cd "$srcdir/$pkgname-$pkgver"
- make "${_makeargs[@]}"
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="${pkgdir}" "${_makeargs[@]}" install
-}
diff --git a/pcr/netifrc/PKGBUILD b/pcr/netifrc/PKGBUILD
deleted file mode 100644
index addeb3e85..000000000
--- a/pcr/netifrc/PKGBUILD
+++ /dev/null
@@ -1,48 +0,0 @@
-# Maintainer (artix): artoo <artoo@artixlinux.org>
-# Contributor: williamh <williamh@gentoo.org>
-# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe>
-# Contributor: Luke Shumaker <lukeshu@parabola.nu>
-
-# Gentoo's ebuild file:
-# https://gitweb.gentoo.org/repo/gentoo.git/tree/net-misc/netifrc/netifrc-0.6.1.ebuild
-
-pkgname=netifrc
-pkgver=0.6.1
-pkgrel=1
-pkgdesc="Gentoo Network Interface Management Scripts"
-arch=('any')
-url="https://wiki.gentoo.org/wiki/Netifrc"
-license=('BSD2')
-groups=('base-openrc')
-depends=('gentoo-functions' 'openrc>=0.15' 'udev-init-scripts')
-conflicts=('udev<172' 'udev-init-scripts<27')
-makedepends=('git')
-backup=('etc/conf.d/net')
-validpgpkeys=('A28BEDE08F1744E16037514806C4536755758000') # Jason A. Donenfeld <zx2c4@gentoo.org>
-source=("git://anongit.gentoo.org/proj/${pkgname}.git?signed#tag=${pkgver}")
-sha256sums=('SKIP')
-
-_makeargs=(
- SYSCONFDIR=/etc
- PREFIX=/usr
- SBINDIR=/usr/bin
- LIBEXECDIR="/usr/lib/${pkgname}"
-)
-
-build(){
- cd "$srcdir/$pkgname"
- make "${_makeargs[@]}"
-}
-
-package() {
- cd "$srcdir/$pkgname"
-
- make DESTDIR="$pkgdir" "${_makeargs[@]}" install
-
- install -Dm0644 doc/net.example "$pkgdir/etc/conf.d/net"
-
- install -d "$pkgdir/etc/runlevels/boot"
- ln -sT "/etc/init.d/net.lo" "$pkgdir/etc/runlevels/boot/net.lo"
-
- install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}