* [gentoo-commits] repo/gentoo:master commit in: net-misc/AQtion/
@ 2019-08-29 4:55 Patrick McLean
0 siblings, 0 replies; 5+ messages in thread
From: Patrick McLean @ 2019-08-29 4:55 UTC (permalink / raw
To: gentoo-commits
commit: e59d3db09e943fd24403d4313d76c8f586a55b07
Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Thu Aug 29 04:54:38 2019 +0000
Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Thu Aug 29 04:55:19 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e59d3db0
net-misc/AQtion: New package
Package-Manager: Portage-2.3.73, Repoman-2.3.17
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
net-misc/AQtion/AQtion-2.2.7.ebuild | 49 +++++++++++++++++++++++++++++++++++++
net-misc/AQtion/Manifest | 1 +
net-misc/AQtion/metadata.xml | 24 ++++++++++++++++++
3 files changed, 74 insertions(+)
diff --git a/net-misc/AQtion/AQtion-2.2.7.ebuild b/net-misc/AQtion/AQtion-2.2.7.ebuild
new file mode 100644
index 00000000000..157bb239def
--- /dev/null
+++ b/net-misc/AQtion/AQtion-2.2.7.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-mod
+
+DESCRIPTION="Aquantia AQC multigigabit NIC linux driver (atlantic) - development preview"
+HOMEPAGE="https://github.com/Aquantia/AQtion"
+
+COMMIT_ID="e024a859ea828ced78db310328db90dbedea837a"
+SRC_URI="https://github.com/Aquantia/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="lro"
+
+DEPEND="virtual/linux-sources"
+
+S="${WORKDIR}/${PN}-${COMMIT_ID}"
+
+MODULE_NAMES="atlantic(drivers/net/ethernet/aquantia/atlantic:${S})"
+BUILD_TARGETS="all"
+CONFIG_CHECK="~!AQTION ~PTP_1588_CLOCK ~CRC_ITU_T"
+
+DOCS=(
+ README.md
+ README.txt
+)
+
+pkg_setup() {
+ use lro && CONFIG_CHECK+=" ~!CONFIG_BRIDGE"
+ linux-mod_pkg_setup
+}
+
+src_prepare() {
+ default
+
+ if ! use lro; then
+ sed -r -i -e 's/(#define AQ_CFG_IS_LRO_DEF[[:space:]]+)[[:digit:]]+([[:alpha:]]*)/\10\2/' \
+ aq_cfg.h || die
+ fi
+}
+
+src_install() {
+ linux-mod_src_install
+ dodoc "${DOCS[@]}"
+}
diff --git a/net-misc/AQtion/Manifest b/net-misc/AQtion/Manifest
new file mode 100644
index 00000000000..78d41b07f85
--- /dev/null
+++ b/net-misc/AQtion/Manifest
@@ -0,0 +1 @@
+DIST AQtion-2.2.7.tar.gz 122679 BLAKE2B 9d4e2d4d4b26a191551e2cfd30c2a8ce4e4bde01b7ab1e9beb9564abdfd1093b63f94713570fe2c949943037b649c55a9f448b0333fcdcc7227849330d466f92 SHA512 d3ba78acbe5d85d1017d5460fa7d916ffa59eeb137aa1817da215f08b994a10336a9f865c9b84a16b8cef7238d4fd87785bc17d6e3eac577210bf321538cbda3
diff --git a/net-misc/AQtion/metadata.xml b/net-misc/AQtion/metadata.xml
new file mode 100644
index 00000000000..62085b44d7b
--- /dev/null
+++ b/net-misc/AQtion/metadata.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>chutzpah@gentoo.org</email>
+ <name>Patrick McLean</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">Aquantia/AQtion</remote-id>
+ </upstream>
+ <use>
+ <flag name="lro">
+ Enable/disable Large Receive Offload. This MUST be disabled for
+ bridging or forwarding.
+ </flag>
+ </use>
+ <longdescription>
+ Latest development preview of aquantia's atlantic linux kernel
+ driver for AQtion family of multigigabit adapters.
+
+ These drivers are UNSUPPORTED by the vendor, use at your own
+ risk.
+ </longdescription>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/AQtion/
@ 2019-09-23 20:44 Patrick McLean
0 siblings, 0 replies; 5+ messages in thread
From: Patrick McLean @ 2019-09-23 20:44 UTC (permalink / raw
To: gentoo-commits
commit: 99344b4305b897f0ac79176b60b9907281619451
Author: Patrick McLean <patrick.mclean <AT> sony <DOT> com>
AuthorDate: Mon Sep 23 20:44:26 2019 +0000
Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Mon Sep 23 20:44:26 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99344b43
net-misc/AQtion: Fix build against a non-running kernel
Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
net-misc/AQtion/AQtion-2.2.7.ebuild | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/net-misc/AQtion/AQtion-2.2.7.ebuild b/net-misc/AQtion/AQtion-2.2.7.ebuild
index 157bb239def..052ff5de6cb 100644
--- a/net-misc/AQtion/AQtion-2.2.7.ebuild
+++ b/net-misc/AQtion/AQtion-2.2.7.ebuild
@@ -43,7 +43,11 @@ src_prepare() {
fi
}
+src_compile() {
+ KDIR="${KERNEL_DIR}" linux-mod_src_compile
+}
+
src_install() {
- linux-mod_src_install
+ KDIR="${KERNEL_DIR}" linux-mod_src_install
dodoc "${DOCS[@]}"
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/AQtion/
@ 2019-11-04 20:43 Patrick McLean
0 siblings, 0 replies; 5+ messages in thread
From: Patrick McLean @ 2019-11-04 20:43 UTC (permalink / raw
To: gentoo-commits
commit: c8652c8212bf6e78e618401560035043ed11a8c3
Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 4 20:42:09 2019 +0000
Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Mon Nov 4 20:42:55 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8652c82
net-misc/AQtion: Version bump to 2.3.1
Package-Manager: Portage-2.3.78, Repoman-2.3.17
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
net-misc/AQtion/AQtion-2.3.1.ebuild | 53 +++++++++++++++++++++++++++++++++++++
net-misc/AQtion/Manifest | 1 +
2 files changed, 54 insertions(+)
diff --git a/net-misc/AQtion/AQtion-2.3.1.ebuild b/net-misc/AQtion/AQtion-2.3.1.ebuild
new file mode 100644
index 00000000000..6ea5a134c5c
--- /dev/null
+++ b/net-misc/AQtion/AQtion-2.3.1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-mod
+
+DESCRIPTION="Aquantia AQC multigigabit NIC linux driver (atlantic) - development preview"
+HOMEPAGE="https://github.com/Aquantia/AQtion"
+
+COMMIT_ID="3c2a2a3abe3df6cb0c985a49cea9a359a83e3f75"
+SRC_URI="https://github.com/Aquantia/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="lro"
+
+DEPEND="virtual/linux-sources"
+
+S="${WORKDIR}/${PN}-${COMMIT_ID}"
+
+MODULE_NAMES="atlantic(drivers/net/ethernet/aquantia/atlantic:${S})"
+BUILD_TARGETS="all"
+CONFIG_CHECK="~!AQTION ~PTP_1588_CLOCK ~CRC_ITU_T"
+
+DOCS=(
+ README.md
+ README.txt
+)
+
+pkg_setup() {
+ use lro && CONFIG_CHECK+=" ~!CONFIG_BRIDGE"
+ linux-mod_pkg_setup
+}
+
+src_prepare() {
+ default
+
+ if ! use lro; then
+ sed -r -i -e 's/(#define AQ_CFG_IS_LRO_DEF[[:space:]]+)[[:digit:]]+([[:alpha:]]*)/\10\2/' \
+ aq_cfg.h || die
+ fi
+}
+
+src_compile() {
+ KDIR="${KERNEL_DIR}" linux-mod_src_compile
+}
+
+src_install() {
+ KDIR="${KERNEL_DIR}" linux-mod_src_install
+ dodoc "${DOCS[@]}"
+}
diff --git a/net-misc/AQtion/Manifest b/net-misc/AQtion/Manifest
index 78d41b07f85..4ca2a12c2a8 100644
--- a/net-misc/AQtion/Manifest
+++ b/net-misc/AQtion/Manifest
@@ -1 +1,2 @@
DIST AQtion-2.2.7.tar.gz 122679 BLAKE2B 9d4e2d4d4b26a191551e2cfd30c2a8ce4e4bde01b7ab1e9beb9564abdfd1093b63f94713570fe2c949943037b649c55a9f448b0333fcdcc7227849330d466f92 SHA512 d3ba78acbe5d85d1017d5460fa7d916ffa59eeb137aa1817da215f08b994a10336a9f865c9b84a16b8cef7238d4fd87785bc17d6e3eac577210bf321538cbda3
+DIST AQtion-2.3.1.tar.gz 122884 BLAKE2B 46037acfdb3914eb2aac26795d923f22e34bf51ed31c993169803ea572108fe0bf98ef61bbadfa86b7027161aa5105c8b2cb4f19e1b12388ce9296f87f2f7c6d SHA512 929a4f208c041340d684e7732256511d68dac71d5204c34c8f0d6aa5832b0de0667bda7e1fa44a5486c7c34692f73c5de397655b0ba0efb12de8d4d76316e835
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/AQtion/
@ 2020-01-28 3:06 Patrick McLean
0 siblings, 0 replies; 5+ messages in thread
From: Patrick McLean @ 2020-01-28 3:06 UTC (permalink / raw
To: gentoo-commits
commit: af6ae131323c6e70eb34d47fe976df449d1eb339
Author: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 28 03:04:15 2020 +0000
Commit: Patrick McLean <chutzpah <AT> gentoo <DOT> org>
CommitDate: Tue Jan 28 03:05:57 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af6ae131
net-misc/AQtion-2.3.4: Version bump
Package-Manager: Portage-2.3.85, Repoman-2.3.20
Signed-off-by: Patrick McLean <chutzpah <AT> gentoo.org>
net-misc/AQtion/AQtion-2.3.4.ebuild | 53 +++++++++++++++++++++++++++++++++++++
net-misc/AQtion/Manifest | 1 +
2 files changed, 54 insertions(+)
diff --git a/net-misc/AQtion/AQtion-2.3.4.ebuild b/net-misc/AQtion/AQtion-2.3.4.ebuild
new file mode 100644
index 00000000000..c9ff68cda4f
--- /dev/null
+++ b/net-misc/AQtion/AQtion-2.3.4.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-mod
+
+DESCRIPTION="Aquantia AQC multigigabit NIC linux driver (atlantic) - development preview"
+HOMEPAGE="https://github.com/Aquantia/AQtion"
+
+COMMIT_ID="3b96f1b5f29d844151bc2dc38443de7a9a2f0cf3"
+SRC_URI="https://github.com/Aquantia/${PN}/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="lro"
+
+DEPEND="virtual/linux-sources"
+
+S="${WORKDIR}/${PN}-${COMMIT_ID}"
+
+MODULE_NAMES="atlantic(drivers/net/ethernet/aquantia/atlantic:${S})"
+BUILD_TARGETS="all"
+CONFIG_CHECK="~!AQTION ~PTP_1588_CLOCK ~CRC_ITU_T"
+
+DOCS=(
+ README.md
+ README.txt
+)
+
+pkg_setup() {
+ use lro && CONFIG_CHECK+=" ~!CONFIG_BRIDGE"
+ linux-mod_pkg_setup
+}
+
+src_prepare() {
+ default
+
+ if ! use lro; then
+ sed -r -i -e 's/(#define AQ_CFG_IS_LRO_DEF[[:space:]]+)[[:digit:]]+([[:alpha:]]*)/\10\2/' \
+ aq_cfg.h || die
+ fi
+}
+
+src_compile() {
+ KDIR="${KERNEL_DIR}" linux-mod_src_compile
+}
+
+src_install() {
+ KDIR="${KERNEL_DIR}" linux-mod_src_install
+ dodoc "${DOCS[@]}"
+}
diff --git a/net-misc/AQtion/Manifest b/net-misc/AQtion/Manifest
index 4ca2a12c2a8..d2d055ae312 100644
--- a/net-misc/AQtion/Manifest
+++ b/net-misc/AQtion/Manifest
@@ -1,2 +1,3 @@
DIST AQtion-2.2.7.tar.gz 122679 BLAKE2B 9d4e2d4d4b26a191551e2cfd30c2a8ce4e4bde01b7ab1e9beb9564abdfd1093b63f94713570fe2c949943037b649c55a9f448b0333fcdcc7227849330d466f92 SHA512 d3ba78acbe5d85d1017d5460fa7d916ffa59eeb137aa1817da215f08b994a10336a9f865c9b84a16b8cef7238d4fd87785bc17d6e3eac577210bf321538cbda3
DIST AQtion-2.3.1.tar.gz 122884 BLAKE2B 46037acfdb3914eb2aac26795d923f22e34bf51ed31c993169803ea572108fe0bf98ef61bbadfa86b7027161aa5105c8b2cb4f19e1b12388ce9296f87f2f7c6d SHA512 929a4f208c041340d684e7732256511d68dac71d5204c34c8f0d6aa5832b0de0667bda7e1fa44a5486c7c34692f73c5de397655b0ba0efb12de8d4d76316e835
+DIST AQtion-2.3.4.tar.gz 123200 BLAKE2B 8427d7051625ad44a4478ad89c7bb7c079063f81a93c1704df25b6a033887eb93820b65d9ec46f5b3bd8a85544b94182f6e5d33e1dc60142c2292bad6fa054ce SHA512 b985214fc2ec31d0a71453a784b1467ac935265d8a6fd1f2f35a1602d288f4394deb178f29b4edbe4d962fadae942cb0c484a35ec3d02d3e6564e3cf5493314f
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: net-misc/AQtion/
@ 2020-08-08 12:18 Mikle Kolyada
0 siblings, 0 replies; 5+ messages in thread
From: Mikle Kolyada @ 2020-08-08 12:18 UTC (permalink / raw
To: gentoo-commits
commit: 6384db4485db76032a819c2f57bb3c2f8cb9bb92
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Aug 7 11:02:35 2020 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Aug 8 12:18:15 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6384db44
net-misc/AQtion: migrate to sys-apps/kmod
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
net-misc/AQtion/{AQtion-2.2.7.ebuild => AQtion-2.2.7-r1.ebuild} | 2 +-
net-misc/AQtion/{AQtion-2.3.1.ebuild => AQtion-2.3.1-r1.ebuild} | 2 +-
net-misc/AQtion/{AQtion-2.3.4.ebuild => AQtion-2.3.4-r1.ebuild} | 0
3 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/net-misc/AQtion/AQtion-2.2.7.ebuild b/net-misc/AQtion/AQtion-2.2.7-r1.ebuild
similarity index 96%
rename from net-misc/AQtion/AQtion-2.2.7.ebuild
rename to net-misc/AQtion/AQtion-2.2.7-r1.ebuild
index 052ff5de6cb..859d3b001da 100644
--- a/net-misc/AQtion/AQtion-2.2.7.ebuild
+++ b/net-misc/AQtion/AQtion-2.2.7-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2019-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
diff --git a/net-misc/AQtion/AQtion-2.3.1.ebuild b/net-misc/AQtion/AQtion-2.3.1-r1.ebuild
similarity index 96%
rename from net-misc/AQtion/AQtion-2.3.1.ebuild
rename to net-misc/AQtion/AQtion-2.3.1-r1.ebuild
index 6ea5a134c5c..d913e44322c 100644
--- a/net-misc/AQtion/AQtion-2.3.1.ebuild
+++ b/net-misc/AQtion/AQtion-2.3.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2019-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
diff --git a/net-misc/AQtion/AQtion-2.3.4.ebuild b/net-misc/AQtion/AQtion-2.3.4-r1.ebuild
similarity index 100%
rename from net-misc/AQtion/AQtion-2.3.4.ebuild
rename to net-misc/AQtion/AQtion-2.3.4-r1.ebuild
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-08-08 12:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-29 4:55 [gentoo-commits] repo/gentoo:master commit in: net-misc/AQtion/ Patrick McLean
-- strict thread matches above, loose matches on Subject: below --
2019-09-23 20:44 Patrick McLean
2019-11-04 20:43 Patrick McLean
2020-01-28 3:06 Patrick McLean
2020-08-08 12:18 Mikle Kolyada
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox