* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15/
@ 2017-12-14 22:12 Robin H. Johnson
0 siblings, 0 replies; 12+ messages in thread
From: Robin H. Johnson @ 2017-12-14 22:12 UTC (permalink / raw
To: gentoo-commits
commit: 6d9e853a6e92aeba2e151aea0efc49d3e080b53e
Author: Harri Nieminen <moikkis <AT> gmail <DOT> com>
AuthorDate: Sun Dec 10 11:03:35 2017 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Thu Dec 14 22:11:44 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d9e853a
dev-libs/libg15: Update homepage
Package-Manager: Portage-2.3.17, Repoman-2.3.6
Closes: https://github.com/gentoo/gentoo/pull/6505
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
dev-libs/libg15/libg15-1.2.7-r1.ebuild | 4 ++--
dev-libs/libg15/libg15-9999.ebuild | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/dev-libs/libg15/libg15-1.2.7-r1.ebuild b/dev-libs/libg15/libg15-1.2.7-r1.ebuild
index 9b340e408e4..5ec490f2e52 100644
--- a/dev-libs/libg15/libg15-1.2.7-r1.ebuild
+++ b/dev-libs/libg15/libg15-1.2.7-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
DESCRIPTION="The libg15 library gives low-level access to the Logitech G15 keyboard"
-HOMEPAGE="http://g15tools.sourceforge.net/"
+HOMEPAGE="https://sourceforge.net/projects/g15tools/"
SRC_URI="mirror://sourceforge/g15tools/${P}.tar.bz2"
LICENSE="GPL-2"
diff --git a/dev-libs/libg15/libg15-9999.ebuild b/dev-libs/libg15/libg15-9999.ebuild
index 174001c15b5..a2faa821117 100644
--- a/dev-libs/libg15/libg15-9999.ebuild
+++ b/dev-libs/libg15/libg15-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
@@ -8,7 +8,7 @@ ESVN_REPO_URI="https://svn.code.sf.net/p/g15tools/code/trunk/${PN}"
inherit subversion base eutils autotools
DESCRIPTION="The libg15 library gives low-level access to the Logitech G15 keyboard"
-HOMEPAGE="http://g15tools.sourceforge.net/"
+HOMEPAGE="https://sourceforge.net/projects/g15tools/"
[[ $PV = *9999* ]] || SRC_URI="mirror://sourceforge/g15tools/${P}.tar.bz2"
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15/
@ 2020-02-18 19:11 David Seifert
0 siblings, 0 replies; 12+ messages in thread
From: David Seifert @ 2020-02-18 19:11 UTC (permalink / raw
To: gentoo-commits
commit: d52af4a5cd1ec5d56c3cd37f2b50afc30c206bc1
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 18 19:10:55 2020 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Tue Feb 18 19:10:55 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d52af4a5
dev-libs/libg15: Port to EAPI 7
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: David Seifert <soap <AT> gentoo.org>
dev-libs/libg15/libg15-1.2.7-r1.ebuild | 31 ++++++++++++++--------
dev-libs/libg15/libg15-9999.ebuild | 47 ++++++++++++----------------------
2 files changed, 37 insertions(+), 41 deletions(-)
diff --git a/dev-libs/libg15/libg15-1.2.7-r1.ebuild b/dev-libs/libg15/libg15-1.2.7-r1.ebuild
index 5ec490f2e52..3e7892e8cce 100644
--- a/dev-libs/libg15/libg15-1.2.7-r1.ebuild
+++ b/dev-libs/libg15/libg15-1.2.7-r1.ebuild
@@ -1,29 +1,38 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
+EAPI=7
+
+if [[ ${PV} == *9999 ]]; then
+ inherit autotools subversion
+ ESVN_PROJECT=g15tools/trunk
+ ESVN_REPO_URI="https://svn.code.sf.net/p/g15tools/code/trunk/${PN}"
+else
+ KEYWORDS="amd64 ppc ppc64 x86"
+ SRC_URI="mirror://sourceforge/g15tools/${P}.tar.bz2"
+fi
DESCRIPTION="The libg15 library gives low-level access to the Logitech G15 keyboard"
HOMEPAGE="https://sourceforge.net/projects/g15tools/"
-SRC_URI="mirror://sourceforge/g15tools/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE=""
-DEPEND="=virtual/libusb-0*"
-RDEPEND=${DEPEND}
+RDEPEND="virtual/libusb:0"
+DEPEND="${RDEPEND}"
-DOCS=( AUTHORS README ChangeLog )
+src_prepare() {
+ default
+ [[ ${PV} == *9999 ]] && eautoreconf
+}
src_configure() {
- econf \
- --disable-static
+ econf --disable-static
}
src_install() {
default
- find "${ED}" -name '*.la' -exec rm -f {} +
+ # no static archives
+ find "${D}" -name '*.la' -delete || die
}
diff --git a/dev-libs/libg15/libg15-9999.ebuild b/dev-libs/libg15/libg15-9999.ebuild
index a2faa821117..3e7892e8cce 100644
--- a/dev-libs/libg15/libg15-9999.ebuild
+++ b/dev-libs/libg15/libg15-9999.ebuild
@@ -1,51 +1,38 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=4
-ESVN_PROJECT=g15tools/trunk
-ESVN_REPO_URI="https://svn.code.sf.net/p/g15tools/code/trunk/${PN}"
+EAPI=7
-inherit subversion base eutils autotools
+if [[ ${PV} == *9999 ]]; then
+ inherit autotools subversion
+ ESVN_PROJECT=g15tools/trunk
+ ESVN_REPO_URI="https://svn.code.sf.net/p/g15tools/code/trunk/${PN}"
+else
+ KEYWORDS="amd64 ppc ppc64 x86"
+ SRC_URI="mirror://sourceforge/g15tools/${P}.tar.bz2"
+fi
DESCRIPTION="The libg15 library gives low-level access to the Logitech G15 keyboard"
HOMEPAGE="https://sourceforge.net/projects/g15tools/"
-[[ $PV = *9999* ]] || SRC_URI="mirror://sourceforge/g15tools/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS=""
-IUSE=""
-DEPEND="=virtual/libusb-0*"
-RDEPEND=${DEPEND}
-
-DOCS=( AUTHORS README ChangeLog )
-
-PATCHES=( "${FILESDIR}"/g15tools.patch )
-
-src_unpack() {
- if [[ ${PV} = *9999* ]]; then
- subversion_src_unpack
- fi
-}
+RDEPEND="virtual/libusb:0"
+DEPEND="${RDEPEND}"
src_prepare() {
- if [[ ${PV} = *9999* ]]; then
- subversion_wc_info
- fi
- base_src_prepare
- if [[ ${PV} = *9999* ]]; then
- eautoreconf
- fi
+ default
+ [[ ${PV} == *9999 ]] && eautoreconf
}
src_configure() {
- econf \
- --disable-static
+ econf --disable-static
}
src_install() {
default
- find "${ED}" -name '*.la' -exec rm -f {} +
+ # no static archives
+ find "${D}" -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15/
@ 2020-09-09 12:29 Lars Wendler
0 siblings, 0 replies; 12+ messages in thread
From: Lars Wendler @ 2020-09-09 12:29 UTC (permalink / raw
To: gentoo-commits
commit: bc70f823002e40842091d2f0a06db865c0ee1f45
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 9 12:03:03 2020 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Wed Sep 9 12:29:25 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc70f823
dev-libs/libg15: Minor ebuild adjustments
Package-Manager: Portage-3.0.6, Repoman-3.0.1
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
dev-libs/libg15/libg15-1.2.7-r1.ebuild | 2 +-
dev-libs/libg15/libg15-9999.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/libg15/libg15-1.2.7-r1.ebuild b/dev-libs/libg15/libg15-1.2.7-r1.ebuild
index 3e7892e8cce..638cbaf7340 100644
--- a/dev-libs/libg15/libg15-1.2.7-r1.ebuild
+++ b/dev-libs/libg15/libg15-1.2.7-r1.ebuild
@@ -34,5 +34,5 @@ src_install() {
default
# no static archives
- find "${D}" -name '*.la' -delete || die
+ find "${ED}" -type f -name '*.la' -delete || die
}
diff --git a/dev-libs/libg15/libg15-9999.ebuild b/dev-libs/libg15/libg15-9999.ebuild
index 3e7892e8cce..638cbaf7340 100644
--- a/dev-libs/libg15/libg15-9999.ebuild
+++ b/dev-libs/libg15/libg15-9999.ebuild
@@ -34,5 +34,5 @@ src_install() {
default
# no static archives
- find "${D}" -name '*.la' -delete || die
+ find "${ED}" -type f -name '*.la' -delete || die
}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15/
@ 2022-05-14 22:56 Lars Wendler
0 siblings, 0 replies; 12+ messages in thread
From: Lars Wendler @ 2022-05-14 22:56 UTC (permalink / raw
To: gentoo-commits
commit: d87242b26bee42b6eefba06273cab265a4d452e7
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri May 13 15:53:19 2022 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sat May 14 22:56:08 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d87242b2
dev-libs/libg15: Updated live ebuild
- new upstream
- switch from svn to git
- bump to EAPI-8
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
dev-libs/libg15/libg15-9999.ebuild | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/dev-libs/libg15/libg15-9999.ebuild b/dev-libs/libg15/libg15-9999.ebuild
index 638cbaf73401..0a74e03e1c6a 100644
--- a/dev-libs/libg15/libg15-9999.ebuild
+++ b/dev-libs/libg15/libg15-9999.ebuild
@@ -1,19 +1,18 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=7
+EAPI=8
if [[ ${PV} == *9999 ]]; then
- inherit autotools subversion
- ESVN_PROJECT=g15tools/trunk
- ESVN_REPO_URI="https://svn.code.sf.net/p/g15tools/code/trunk/${PN}"
+ inherit autotools git-r3
+ EGIT_REPO_URI="https://gitlab.com/menelkir/libg15.git"
else
- KEYWORDS="amd64 ppc ppc64 x86"
- SRC_URI="mirror://sourceforge/g15tools/${P}.tar.bz2"
+ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+ SRC_URI="https://gitlab.com/menelkir/${PN}/-/archive/${PV}/${P}.tar.bz2"
fi
DESCRIPTION="The libg15 library gives low-level access to the Logitech G15 keyboard"
-HOMEPAGE="https://sourceforge.net/projects/g15tools/"
+HOMEPAGE="https://gitlab.com/menelkir/libg15"
LICENSE="GPL-2"
SLOT="0"
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15/
@ 2022-05-14 22:56 Lars Wendler
0 siblings, 0 replies; 12+ messages in thread
From: Lars Wendler @ 2022-05-14 22:56 UTC (permalink / raw
To: gentoo-commits
commit: 0bf8786dafdd4ead6e17094d6535f0e6f2c2361e
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Fri May 13 15:54:55 2022 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Sat May 14 22:56:08 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bf8786d
dev-libs/libg15: Bump to version 3.0.7
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
dev-libs/libg15/Manifest | 1 +
dev-libs/libg15/libg15-3.0.7.ebuild | 37 +++++++++++++++++++++++++++++++++++++
2 files changed, 38 insertions(+)
diff --git a/dev-libs/libg15/Manifest b/dev-libs/libg15/Manifest
index edf13133fb4b..027d34a75cbe 100644
--- a/dev-libs/libg15/Manifest
+++ b/dev-libs/libg15/Manifest
@@ -1 +1,2 @@
DIST libg15-1.2.7.tar.bz2 232475 BLAKE2B 490193410f2127d4efc0bcf64909514faff2ecce57bba08e1cf53a958ab296a59bc12867bbd14ca1bf866e5f69833d99f4e3ebb7d078ece35725afe2c0dd03ab SHA512 ddffb38f5c3d9ce0cb90b0375c2f5d317a7bb3889fe59d56932a0889c6e15bc2f1e590757d3182eddf7c5bd3101303b332b18fbd37247c20f66e1be256aa93c0
+DIST libg15-3.0.7.tar.bz2 327738 BLAKE2B 3879e8119380fc514e04b63723601a97e1efacda48435ce79815faf2e525482cc0e3b9d6bebf135068f0c9d16b6753b8eb7dfb71bed2cfdb531983283e3fcd8e SHA512 f8f5a363fe6457e9845bea37260d1e8e266503822c554b4c51caeadf3364acb9d76e3535b9ddf633cdde6082f166f8b41141fae3d8f5fe83885b16d228aedb01
diff --git a/dev-libs/libg15/libg15-3.0.7.ebuild b/dev-libs/libg15/libg15-3.0.7.ebuild
new file mode 100644
index 000000000000..0a74e03e1c6a
--- /dev/null
+++ b/dev-libs/libg15/libg15-3.0.7.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ ${PV} == *9999 ]]; then
+ inherit autotools git-r3
+ EGIT_REPO_URI="https://gitlab.com/menelkir/libg15.git"
+else
+ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+ SRC_URI="https://gitlab.com/menelkir/${PN}/-/archive/${PV}/${P}.tar.bz2"
+fi
+
+DESCRIPTION="The libg15 library gives low-level access to the Logitech G15 keyboard"
+HOMEPAGE="https://gitlab.com/menelkir/libg15"
+
+LICENSE="GPL-2"
+SLOT="0"
+
+RDEPEND="virtual/libusb:0"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+ default
+ [[ ${PV} == *9999 ]] && eautoreconf
+}
+
+src_configure() {
+ econf --disable-static
+}
+
+src_install() {
+ default
+
+ # no static archives
+ find "${ED}" -type f -name '*.la' -delete || die
+}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15/
@ 2024-05-29 18:56 Robin H. Johnson
0 siblings, 0 replies; 12+ messages in thread
From: Robin H. Johnson @ 2024-05-29 18:56 UTC (permalink / raw
To: gentoo-commits
commit: bf9f59b1846ad7735ee384bc841f8e1266c3b195
Author: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed May 29 18:52:00 2024 +0000
Commit: Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed May 29 18:56:07 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf9f59b1
dev-libs/libg15: drop to maintainer-needed
Signed-off-by: Robin H. Johnson <robbat2 <AT> gentoo.org>
dev-libs/libg15/metadata.xml | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/dev-libs/libg15/metadata.xml b/dev-libs/libg15/metadata.xml
index 947c62c9e342..215d63df9cf8 100644
--- a/dev-libs/libg15/metadata.xml
+++ b/dev-libs/libg15/metadata.xml
@@ -1,9 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>robbat2@gentoo.org</email>
- </maintainer>
+ <!-- maintainer-needed -->
<upstream>
<remote-id type="sourceforge">g15tools</remote-id>
</upstream>
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15/
@ 2024-09-10 21:35 Sam James
0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2024-09-10 21:35 UTC (permalink / raw
To: gentoo-commits
commit: 0652843b3b1ecda03d711c3d7db58d7550bae1a7
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 10 21:35:09 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 10 21:35:09 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0652843b
dev-libs/libg15: Stabilize 3.0.7 amd64, #939441
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/libg15/libg15-3.0.7.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-libs/libg15/libg15-3.0.7.ebuild b/dev-libs/libg15/libg15-3.0.7.ebuild
index 0a74e03e1c6a..db870fd4d3ab 100644
--- a/dev-libs/libg15/libg15-3.0.7.ebuild
+++ b/dev-libs/libg15/libg15-3.0.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -7,7 +7,7 @@ if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://gitlab.com/menelkir/libg15.git"
else
- KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+ KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
SRC_URI="https://gitlab.com/menelkir/${PN}/-/archive/${PV}/${P}.tar.bz2"
fi
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15/
@ 2024-09-10 21:35 Sam James
0 siblings, 0 replies; 12+ messages in thread
From: Sam James @ 2024-09-10 21:35 UTC (permalink / raw
To: gentoo-commits
commit: 3ca8aff14331438d9648697b22d62baa2c85bc45
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 10 21:35:11 2024 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Sep 10 21:35:11 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ca8aff1
dev-libs/libg15: Stabilize 3.0.7 x86, #939441
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/libg15/libg15-3.0.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/libg15/libg15-3.0.7.ebuild b/dev-libs/libg15/libg15-3.0.7.ebuild
index db870fd4d3ab..61a2d8a6b216 100644
--- a/dev-libs/libg15/libg15-3.0.7.ebuild
+++ b/dev-libs/libg15/libg15-3.0.7.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://gitlab.com/menelkir/libg15.git"
else
- KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
+ KEYWORDS="amd64 ~ppc ~ppc64 x86"
SRC_URI="https://gitlab.com/menelkir/${PN}/-/archive/${PV}/${P}.tar.bz2"
fi
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15/
@ 2024-09-12 12:27 Arthur Zamarin
0 siblings, 0 replies; 12+ messages in thread
From: Arthur Zamarin @ 2024-09-12 12:27 UTC (permalink / raw
To: gentoo-commits
commit: bf93c825b64208246fba96569fedb8aac7f77ab7
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 12 12:27:32 2024 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Sep 12 12:27:32 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf93c825
dev-libs/libg15: Stabilize 3.0.7 ppc, #939441
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
dev-libs/libg15/libg15-3.0.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/libg15/libg15-3.0.7.ebuild b/dev-libs/libg15/libg15-3.0.7.ebuild
index 61a2d8a6b216..c42db4025f6b 100644
--- a/dev-libs/libg15/libg15-3.0.7.ebuild
+++ b/dev-libs/libg15/libg15-3.0.7.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://gitlab.com/menelkir/libg15.git"
else
- KEYWORDS="amd64 ~ppc ~ppc64 x86"
+ KEYWORDS="amd64 ppc ~ppc64 x86"
SRC_URI="https://gitlab.com/menelkir/${PN}/-/archive/${PV}/${P}.tar.bz2"
fi
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15/
@ 2024-09-12 16:16 Jakov Smolić
0 siblings, 0 replies; 12+ messages in thread
From: Jakov Smolić @ 2024-09-12 16:16 UTC (permalink / raw
To: gentoo-commits
commit: 4e866e026e8aa779ae511a4f88991fb246f3cfcb
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 12 16:16:21 2024 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Thu Sep 12 16:16:21 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e866e02
dev-libs/libg15: Stabilize 3.0.7 ppc64, #939441
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
dev-libs/libg15/libg15-3.0.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-libs/libg15/libg15-3.0.7.ebuild b/dev-libs/libg15/libg15-3.0.7.ebuild
index c42db4025f6b..90c68573b853 100644
--- a/dev-libs/libg15/libg15-3.0.7.ebuild
+++ b/dev-libs/libg15/libg15-3.0.7.ebuild
@@ -7,7 +7,7 @@ if [[ ${PV} == *9999 ]]; then
inherit autotools git-r3
EGIT_REPO_URI="https://gitlab.com/menelkir/libg15.git"
else
- KEYWORDS="amd64 ppc ~ppc64 x86"
+ KEYWORDS="amd64 ppc ppc64 x86"
SRC_URI="https://gitlab.com/menelkir/${PN}/-/archive/${PV}/${P}.tar.bz2"
fi
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15/
@ 2024-10-07 6:23 Petr Vaněk
0 siblings, 0 replies; 12+ messages in thread
From: Petr Vaněk @ 2024-10-07 6:23 UTC (permalink / raw
To: gentoo-commits
commit: 8c6ba9ebe2b88b6acdadf1d8dd8f7781e49ecee7
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 6 15:09:00 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Mon Oct 7 06:22:54 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c6ba9eb
dev-libs/libg15: drop 1.2.7-r1
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
dev-libs/libg15/Manifest | 1 -
dev-libs/libg15/libg15-1.2.7-r1.ebuild | 38 ----------------------------------
2 files changed, 39 deletions(-)
diff --git a/dev-libs/libg15/Manifest b/dev-libs/libg15/Manifest
index 027d34a75cbe..7f1b77a2f3a7 100644
--- a/dev-libs/libg15/Manifest
+++ b/dev-libs/libg15/Manifest
@@ -1,2 +1 @@
-DIST libg15-1.2.7.tar.bz2 232475 BLAKE2B 490193410f2127d4efc0bcf64909514faff2ecce57bba08e1cf53a958ab296a59bc12867bbd14ca1bf866e5f69833d99f4e3ebb7d078ece35725afe2c0dd03ab SHA512 ddffb38f5c3d9ce0cb90b0375c2f5d317a7bb3889fe59d56932a0889c6e15bc2f1e590757d3182eddf7c5bd3101303b332b18fbd37247c20f66e1be256aa93c0
DIST libg15-3.0.7.tar.bz2 327738 BLAKE2B 3879e8119380fc514e04b63723601a97e1efacda48435ce79815faf2e525482cc0e3b9d6bebf135068f0c9d16b6753b8eb7dfb71bed2cfdb531983283e3fcd8e SHA512 f8f5a363fe6457e9845bea37260d1e8e266503822c554b4c51caeadf3364acb9d76e3535b9ddf633cdde6082f166f8b41141fae3d8f5fe83885b16d228aedb01
diff --git a/dev-libs/libg15/libg15-1.2.7-r1.ebuild b/dev-libs/libg15/libg15-1.2.7-r1.ebuild
deleted file mode 100644
index 90ad1f3e5434..000000000000
--- a/dev-libs/libg15/libg15-1.2.7-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-if [[ ${PV} == *9999 ]]; then
- inherit autotools subversion
- ESVN_PROJECT=g15tools/trunk
- ESVN_REPO_URI="https://svn.code.sf.net/p/g15tools/code/trunk/${PN}"
-else
- KEYWORDS="amd64 ppc ppc64 x86"
- SRC_URI="https://downloads.sourceforge.net/g15tools/${P}.tar.bz2"
-fi
-
-DESCRIPTION="The libg15 library gives low-level access to the Logitech G15 keyboard"
-HOMEPAGE="https://sourceforge.net/projects/g15tools/"
-
-LICENSE="GPL-2"
-SLOT="0"
-
-RDEPEND="virtual/libusb:0"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- default
- [[ ${PV} == *9999 ]] && eautoreconf
-}
-
-src_configure() {
- econf --disable-static
-}
-
-src_install() {
- default
-
- # no static archives
- find "${ED}" -type f -name '*.la' -delete || die
-}
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15/
@ 2024-10-07 6:23 Petr Vaněk
0 siblings, 0 replies; 12+ messages in thread
From: Petr Vaněk @ 2024-10-07 6:23 UTC (permalink / raw
To: gentoo-commits
commit: 0120c36874a83dde9926a79cecd6a35049e18e3f
Author: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 6 15:10:29 2024 +0000
Commit: Petr Vaněk <arkamar <AT> gentoo <DOT> org>
CommitDate: Mon Oct 7 06:22:55 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0120c368
dev-libs/libg15: add gitlab upstream metadata
Signed-off-by: Petr Vaněk <arkamar <AT> gentoo.org>
dev-libs/libg15/metadata.xml | 1 +
1 file changed, 1 insertion(+)
diff --git a/dev-libs/libg15/metadata.xml b/dev-libs/libg15/metadata.xml
index 215d63df9cf8..2c9b3719f046 100644
--- a/dev-libs/libg15/metadata.xml
+++ b/dev-libs/libg15/metadata.xml
@@ -3,6 +3,7 @@
<pkgmetadata>
<!-- maintainer-needed -->
<upstream>
+ <remote-id type="gitlab">menelkir/libg15</remote-id>
<remote-id type="sourceforge">g15tools</remote-id>
</upstream>
</pkgmetadata>
^ permalink raw reply related [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-10-07 6:23 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-14 22:12 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libg15/ Robin H. Johnson
-- strict thread matches above, loose matches on Subject: below --
2020-02-18 19:11 David Seifert
2020-09-09 12:29 Lars Wendler
2022-05-14 22:56 Lars Wendler
2022-05-14 22:56 Lars Wendler
2024-05-29 18:56 Robin H. Johnson
2024-09-10 21:35 Sam James
2024-09-10 21:35 Sam James
2024-09-12 12:27 Arthur Zamarin
2024-09-12 16:16 Jakov Smolić
2024-10-07 6:23 Petr Vaněk
2024-10-07 6:23 Petr Vaněk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox