public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-laptop/nvidiabl/files/, app-laptop/nvidiabl/
@ 2016-01-14  2:27 Ian Delaney
  0 siblings, 0 replies; 2+ messages in thread
From: Ian Delaney @ 2016-01-14  2:27 UTC (permalink / raw
  To: gentoo-commits

commit:     71c7d7f99ef3db388b58b34c2d0146b20c0a92a8
Author:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 14 02:21:27 2016 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Thu Jan 14 02:27:06 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71c7d7f9

app-laptop/nvidiabl: bump to vn. 0.87, ebuild by maintainer

The ebuild has changes of minor style tweaks only from the ebuild
submitted via the gentoo bug in Comment 11 in the gentoo bug, namely
- reduction of DESCRIPTION to a single line
- removal of redundant RESTRICT="test"

Gentoo bug: #557422

Package-Manager: portage-2.2.26

 app-laptop/nvidiabl/Manifest                       |  1 +
 .../nvidiabl/files/nvidiabl-0.87-linux-4.0.patch   | 23 ++++++++++++++
 app-laptop/nvidiabl/nvidiabl-0.87.ebuild           | 35 ++++++++++++++++++++++
 3 files changed, 59 insertions(+)

diff --git a/app-laptop/nvidiabl/Manifest b/app-laptop/nvidiabl/Manifest
index 76a124a..afe7307 100644
--- a/app-laptop/nvidiabl/Manifest
+++ b/app-laptop/nvidiabl/Manifest
@@ -1 +1,2 @@
+DIST nvidiabl-0.87.tar.gz 36563463 SHA256 a5a035520cce17ef1b6b2f98eb6ad10ef7d4d3e55dd2f12b6b961fabc05c5e35 SHA512 778f8b9e7d6d8e9ecbeef745bf3602e56b38757791d7b49ebf3326758117487f7494e232aaa9354b91fd17ee3578c80278e0e60175b274b1a1a93e952dc0dfe5 WHIRLPOOL 3ebca47463ccc1059a3d7dd109479ee9c9bce4332da8ac25aaf14fd8630b72b6620e8941a69fd7e2e734739f894362efff75ace05692a3c402a8981601dd3c36
 DIST v0.83.tar.gz 448594 SHA256 0ea79770c02ae297fb6d660ee28ecf7a7acc346de0a55e3231ce499d4184db0f SHA512 cbf4f042acb9005c25d8d008973220f4d42fe890bfd86a34b72c0e56129dfcdcad2383acacf048e5e9da33aaf759053cdadeddac9e0946ae49a8a29ed03447dd WHIRLPOOL 4d1e13ffe1bed36ffee1c498c6384a9ff3fcc561e3aa443c15106baa9711523b8798f0283e42d6365afa57f8d7b4a394835bbea2eb8c6d41a8910c38d661012b

diff --git a/app-laptop/nvidiabl/files/nvidiabl-0.87-linux-4.0.patch b/app-laptop/nvidiabl/files/nvidiabl-0.87-linux-4.0.patch
new file mode 100644
index 0000000..b466bcb
--- /dev/null
+++ b/app-laptop/nvidiabl/files/nvidiabl-0.87-linux-4.0.patch
@@ -0,0 +1,23 @@
+From dee67fbf8eeec1651dbee3c2045ce6a93da949dc Mon Sep 17 00:00:00 2001
+From: Thomas Wucher <mail@thomaswucher.de>
+Date: Tue, 14 Apr 2015 08:41:09 +0200
+Subject: [PATCH] Replace strnicmp by stncasecmp to fix build on Linux 4.0
+
+---
+ nvidiabl-module.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/nvidiabl-module.c b/nvidiabl-module.c
+index b789ea4..b306579 100644
+--- a/nvidiabl-module.c
++++ b/nvidiabl-module.c
+@@ -214,7 +214,7 @@ static int __init nvidiabl_init(void)
+ #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39)
+ 	
+ 	for (iii = 0 ; iii < sizeof(backlight_type_ids) ; iii++) {
+-		if (strnicmp(bl_type, backlight_type_ids[iii].id, sizeof(bl_type)) == 0) {
++		if (strncasecmp(bl_type, backlight_type_ids[iii].id, sizeof(bl_type)) == 0) {
+ 			props.type = backlight_type_ids[iii].type;
+ 			printk(KERN_INFO "nvidiabl: backlight type is %s\n", backlight_type_ids[iii].id);
+ 		}
+

diff --git a/app-laptop/nvidiabl/nvidiabl-0.87.ebuild b/app-laptop/nvidiabl/nvidiabl-0.87.ebuild
new file mode 100644
index 0000000..d7dfb9e
--- /dev/null
+++ b/app-laptop/nvidiabl/nvidiabl-0.87.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit linux-mod eutils
+
+DESCRIPTION="Linux driver for setting the backlight brightness on laptops using NVIDIA GPU"
+HOMEPAGE="https://github.com/guillaumezin/nvidiabl"
+SRC_URI="https://github.com/guillaumezin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+pkg_setup() {
+	CONFIG_CHECK="FB_BACKLIGHT"
+	ERROR_FB_BACKLIGHT="Your kernel does not support FB_BACKLIGHT. To enable you
+it you can enable any frame buffer with backlight control or nouveau.
+Note that you cannot use FB_NVIDIA with nvidia's proprietary driver"
+	linux-mod_pkg_setup
+}
+
+src_prepare() {
+	epatch "${FILESDIR}"/${P}-linux-4.0.patch
+}
+
+src_compile() {
+	BUILD_PARAMS="KVER=${KV_FULL}"
+	BUILD_TARGETS="modules"
+	MODULE_NAMES="nvidiabl()"
+
+	MAKEOPTS+=" V=1"
+	linux-mod_src_compile
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-laptop/nvidiabl/files/, app-laptop/nvidiabl/
@ 2020-01-12 17:35 Mikle Kolyada
  0 siblings, 0 replies; 2+ messages in thread
From: Mikle Kolyada @ 2020-01-12 17:35 UTC (permalink / raw
  To: gentoo-commits

commit:     da980880462f37bc2c16beadb979173192c272d2
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 12 17:35:07 2020 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sun Jan 12 17:35:07 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da980880

app-laptop/nvidiabl: remove last-rited pkg

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 app-laptop/nvidiabl/Manifest                       |  2 --
 .../nvidiabl/files/nvidiabl-0.87-linux-4.0.patch   | 23 --------------
 app-laptop/nvidiabl/metadata.xml                   | 15 ---------
 app-laptop/nvidiabl/nvidiabl-0.83.ebuild           | 37 ----------------------
 app-laptop/nvidiabl/nvidiabl-0.87.ebuild           | 34 --------------------
 5 files changed, 111 deletions(-)

diff --git a/app-laptop/nvidiabl/Manifest b/app-laptop/nvidiabl/Manifest
deleted file mode 100644
index 7d3b9cd0dc3..00000000000
--- a/app-laptop/nvidiabl/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST nvidiabl-0.83.tar.gz 448594 BLAKE2B c80b4f5e09f71004cc1e5eea033181a3de9906648775c415cf9c07e2a16e32fc7e45c32cbe4cd1cb264a2c4be00fc6bb80ac76a6109caf523663132fbf2df662 SHA512 cbf4f042acb9005c25d8d008973220f4d42fe890bfd86a34b72c0e56129dfcdcad2383acacf048e5e9da33aaf759053cdadeddac9e0946ae49a8a29ed03447dd
-DIST nvidiabl-0.87.tar.gz 36563463 BLAKE2B 6feab5505583a26d2426cb3a682e96dd72bb903b5c4187516b22fe4a0b4fb7bb0d7c797396c4b69ab62240baf65337dcb41efcd9952400e1c098f26f6e31ae10 SHA512 778f8b9e7d6d8e9ecbeef745bf3602e56b38757791d7b49ebf3326758117487f7494e232aaa9354b91fd17ee3578c80278e0e60175b274b1a1a93e952dc0dfe5

diff --git a/app-laptop/nvidiabl/files/nvidiabl-0.87-linux-4.0.patch b/app-laptop/nvidiabl/files/nvidiabl-0.87-linux-4.0.patch
deleted file mode 100644
index b466bcb620c..00000000000
--- a/app-laptop/nvidiabl/files/nvidiabl-0.87-linux-4.0.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From dee67fbf8eeec1651dbee3c2045ce6a93da949dc Mon Sep 17 00:00:00 2001
-From: Thomas Wucher <mail@thomaswucher.de>
-Date: Tue, 14 Apr 2015 08:41:09 +0200
-Subject: [PATCH] Replace strnicmp by stncasecmp to fix build on Linux 4.0
-
----
- nvidiabl-module.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/nvidiabl-module.c b/nvidiabl-module.c
-index b789ea4..b306579 100644
---- a/nvidiabl-module.c
-+++ b/nvidiabl-module.c
-@@ -214,7 +214,7 @@ static int __init nvidiabl_init(void)
- #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,39)
- 	
- 	for (iii = 0 ; iii < sizeof(backlight_type_ids) ; iii++) {
--		if (strnicmp(bl_type, backlight_type_ids[iii].id, sizeof(bl_type)) == 0) {
-+		if (strncasecmp(bl_type, backlight_type_ids[iii].id, sizeof(bl_type)) == 0) {
- 			props.type = backlight_type_ids[iii].type;
- 			printk(KERN_INFO "nvidiabl: backlight type is %s\n", backlight_type_ids[iii].id);
- 		}
-

diff --git a/app-laptop/nvidiabl/metadata.xml b/app-laptop/nvidiabl/metadata.xml
deleted file mode 100644
index d57b36ae255..00000000000
--- a/app-laptop/nvidiabl/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person">
-		<email>gentoobugzilla@jeltef.nl</email>
-		<name>Jelte Fennema</name>
-	</maintainer>
-	<maintainer type="project">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
-	</maintainer>
-	<upstream>
-		<remote-id type="github">guillaumezin/nvidiabl</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/app-laptop/nvidiabl/nvidiabl-0.83.ebuild b/app-laptop/nvidiabl/nvidiabl-0.83.ebuild
deleted file mode 100644
index 60f196c88ea..00000000000
--- a/app-laptop/nvidiabl/nvidiabl-0.83.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit linux-mod
-
-DESCRIPTION="Linux driver for setting the backlight brightness on laptops using
-NVIDIA GPU"
-HOMEPAGE="https://github.com/guillaumezin/nvidiabl"
-SRC_URI="https://github.com/guillaumezin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-RESTRICT="test"
-
-BUILD_TARGETS="modules"
-MODULE_NAMES="nvidiabl()"
-
-pkg_pretend() {
-	CONFIG_CHECK="FB_BACKLIGHT"
-	ERROR_FB_BACKLIGHT="Your kernel does not support FB_BACKLIGHT. To enable you
-it you can enable any frame buffer with backlight control or nouveau.
-Note that you cannot use FB_NVIDIA with nvidia's proprietary driver"
-	linux-mod_pkg_setup
-}
-
-src_compile() {
-	BUILD_PARAMS="KVER=${KV_FULL}"
-	MAKEOPTS+=" V=1"
-	linux-mod_src_compile
-}

diff --git a/app-laptop/nvidiabl/nvidiabl-0.87.ebuild b/app-laptop/nvidiabl/nvidiabl-0.87.ebuild
deleted file mode 100644
index e4179351b27..00000000000
--- a/app-laptop/nvidiabl/nvidiabl-0.87.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit linux-mod eutils
-
-DESCRIPTION="Linux driver for setting the backlight brightness on laptops using NVIDIA GPU"
-HOMEPAGE="https://github.com/guillaumezin/nvidiabl"
-SRC_URI="https://github.com/guillaumezin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-pkg_setup() {
-	CONFIG_CHECK="FB_BACKLIGHT"
-	ERROR_FB_BACKLIGHT="Your kernel does not support FB_BACKLIGHT. To enable you
-it you can enable any frame buffer with backlight control or nouveau.
-Note that you cannot use FB_NVIDIA with nvidia's proprietary driver"
-	linux-mod_pkg_setup
-}
-
-src_prepare() {
-	epatch "${FILESDIR}"/${P}-linux-4.0.patch
-}
-
-src_compile() {
-	BUILD_PARAMS="KVER=${KV_FULL}"
-	BUILD_TARGETS="modules"
-	MODULE_NAMES="nvidiabl()"
-
-	MAKEOPTS+=" V=1"
-	linux-mod_src_compile
-}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-01-12 17:35 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-14  2:27 [gentoo-commits] repo/gentoo:master commit in: app-laptop/nvidiabl/files/, app-laptop/nvidiabl/ Ian Delaney
  -- strict thread matches above, loose matches on Subject: below --
2020-01-12 17:35 Mikle Kolyada

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox