[arch-commits] Commit in r8168-lts/repos (3 files)

Andreas Radke andyrtr at archlinux.org
Wed Nov 15 17:20:16 UTC 2017


    Date: Wednesday, November 15, 2017 @ 17:20:15
  Author: andyrtr
Revision: 266896

archrelease: copy trunk to community-testing-x86_64

Added:
  r8168-lts/repos/community-testing-x86_64/
  r8168-lts/repos/community-testing-x86_64/PKGBUILD
    (from rev 266895, r8168-lts/trunk/PKGBUILD)
  r8168-lts/repos/community-testing-x86_64/r8168-lts.install
    (from rev 266895, r8168-lts/trunk/r8168-lts.install)

-------------------+
 PKGBUILD          |   33 +++++++++++++++++++++++++++++++++
 r8168-lts.install |   17 +++++++++++++++++
 2 files changed, 50 insertions(+)

Copied: r8168-lts/repos/community-testing-x86_64/PKGBUILD (from rev 266895, r8168-lts/trunk/PKGBUILD)
===================================================================
--- community-testing-x86_64/PKGBUILD	                        (rev 0)
+++ community-testing-x86_64/PKGBUILD	2017-11-15 17:20:15 UTC (rev 266896)
@@ -0,0 +1,33 @@
+# $Id$
+# Maintainer: Massimiliano Torromeo <massimiliano.torromeo at gmail.com>
+
+pkgname=r8168-lts
+_pkgname=r8168
+pkgver=8.045.08
+pkgrel=4
+pkgdesc="A kernel module for Realtek 8168 network cards for linux-lts"
+url="http://www.realtek.com.tw"
+license=("GPL")
+arch=('x86_64')
+depends=('glibc' "linux-lts>=4.9.62" "linux-lts<4.10")
+makedepends=("linux-lts-headers>=4.9.62" "linux-lts-headers<4.10")
+install=$pkgname.install
+source=(https://github.com/mtorromeo/r8168/archive/$pkgver/$pkgname-$pkgver.tar.gz)
+sha256sums=('18161cb72fc872a9aed194514f7b8fb8b255b6fa6ed3d2dd459700eaad575f31')
+
+_extramodules=extramodules-4.9-lts
+
+build() {
+	cd "$_pkgname-$pkgver"
+	_kernver="$(cat /usr/lib/modules/$_extramodules/version)"
+	make -C /usr/lib/modules/$_kernver/build \
+			SUBDIRS="$srcdir/$_pkgname-$pkgver/src" \
+			EXTRA_CFLAGS="-DCONFIG_R8168_NAPI -DCONFIG_R8168_VLAN" \
+			modules
+}
+
+package() {
+	cd "$_pkgname-$pkgver"
+	install -Dm644 src/$_pkgname.ko "$pkgdir/usr/lib/modules/$_extramodules/$_pkgname.ko"
+	find "$pkgdir" -name '*.ko' -exec gzip -9 {} +
+}

Copied: r8168-lts/repos/community-testing-x86_64/r8168-lts.install (from rev 266895, r8168-lts/trunk/r8168-lts.install)
===================================================================
--- community-testing-x86_64/r8168-lts.install	                        (rev 0)
+++ community-testing-x86_64/r8168-lts.install	2017-11-15 17:20:15 UTC (rev 266896)
@@ -0,0 +1,17 @@
+rebuild_module_dependencies() {
+	EXTRAMODULES='extramodules-4.9-lts'
+	depmod $(cat /lib/modules/$EXTRAMODULES/version)
+}
+
+post_install() {
+  rebuild_module_dependencies
+	echo '>>> The module r8168 conflicts with r8169. You can blacklist it with:'
+	echo '>>>  `echo "blacklist r8169" > /etc/modprobe.d/r8169_blacklist.conf`'
+}
+post_upgrade() {
+	rebuild_module_dependencies
+}
+
+post_remove() {
+	rebuild_module_dependencies
+}



More information about the arch-commits mailing list