public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/stlink/
@ 2017-07-26 22:22 Alexey Shvetsov
  0 siblings, 0 replies; 9+ messages in thread
From: Alexey Shvetsov @ 2017-07-26 22:22 UTC (permalink / raw
  To: gentoo-commits

commit:     6008aef4d64ce49a8a7977fcb72ede2f670ac8ca
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 26 22:21:05 2017 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Wed Jul 26 22:21:32 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6008aef4

dev-embedded/stlink: Add stlink utility

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-embedded/stlink/Manifest            |  1 +
 dev-embedded/stlink/metadata.xml        |  8 ++++++++
 dev-embedded/stlink/stlink-1.4.0.ebuild | 35 +++++++++++++++++++++++++++++++++
 dev-embedded/stlink/stlink-9999.ebuild  | 35 +++++++++++++++++++++++++++++++++
 4 files changed, 79 insertions(+)

diff --git a/dev-embedded/stlink/Manifest b/dev-embedded/stlink/Manifest
new file mode 100644
index 00000000000..78facb08a31
--- /dev/null
+++ b/dev-embedded/stlink/Manifest
@@ -0,0 +1 @@
+DIST stlink-1.4.0.tar.gz 138765 SHA256 d99b8385cce8071d5e58de21b6c8866058af20a8dd46ecf01e1c1dc3aa038cc9 SHA512 cb7617068a6dcaf7e8d0ccfb8b918f0373f6120398dab40a8b8d6567705871226684fd19aad92e4bab623310a5da13ea9fd70153b619f58d3534f0a4ff3a9886 WHIRLPOOL 1b431c2766edbc0e4aa97022a3d9ca4852d993c15964f34e5dd4603e80691a15c20f0d771f4012f2d88802c1e26fdb53bf5a5bb8694df710e283662bc4d0f78c

diff --git a/dev-embedded/stlink/metadata.xml b/dev-embedded/stlink/metadata.xml
new file mode 100644
index 00000000000..086586c08a8
--- /dev/null
+++ b/dev-embedded/stlink/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>alexxy@gentoo.org</email>
+		<name>Alexey Shvetsov</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/dev-embedded/stlink/stlink-1.4.0.ebuild b/dev-embedded/stlink/stlink-1.4.0.ebuild
new file mode 100644
index 00000000000..6711837c176
--- /dev/null
+++ b/dev-embedded/stlink/stlink-1.4.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit cmake-utils udev
+
+DESCRIPTION="stm32 discovery line linux programmer"
+HOMEPAGE="https://github.com/texane/stlink"
+if [[ ${PV} == "9999" ]]; then
+	EGIT_REPO_URI="git://github.com/texane/stlink.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/texane/stlink/archive/${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="virtual/libusb:1
+	>=dev-libs/glib-2.32.0:2
+	x11-libs/gtk+:3"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+src_configure() {
+	local mycmakeargs=(
+		-DSTLINK_UDEV_RULES_DIR="$(get_udevdir)"/rules.d
+		-DSTLINK_MODPROBED_DIR="${EPREFIX}/etc/modprobe.d"
+	)
+
+	cmake-utils_src_configure
+}

diff --git a/dev-embedded/stlink/stlink-9999.ebuild b/dev-embedded/stlink/stlink-9999.ebuild
new file mode 100644
index 00000000000..6711837c176
--- /dev/null
+++ b/dev-embedded/stlink/stlink-9999.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit cmake-utils udev
+
+DESCRIPTION="stm32 discovery line linux programmer"
+HOMEPAGE="https://github.com/texane/stlink"
+if [[ ${PV} == "9999" ]]; then
+	EGIT_REPO_URI="git://github.com/texane/stlink.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/texane/stlink/archive/${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="virtual/libusb:1
+	>=dev-libs/glib-2.32.0:2
+	x11-libs/gtk+:3"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+src_configure() {
+	local mycmakeargs=(
+		-DSTLINK_UDEV_RULES_DIR="$(get_udevdir)"/rules.d
+		-DSTLINK_MODPROBED_DIR="${EPREFIX}/etc/modprobe.d"
+	)
+
+	cmake-utils_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/stlink/
@ 2017-07-30  8:47 Michał Górny
  0 siblings, 0 replies; 9+ messages in thread
From: Michał Górny @ 2017-07-30  8:47 UTC (permalink / raw
  To: gentoo-commits

commit:     477282eb0a6a425876d943b606db328c67e204f8
Author:     David Hicks <david <AT> hicks <DOT> id <DOT> au>
AuthorDate: Sat Jul 29 07:44:15 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 30 08:47:28 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=477282eb

dev-embedded/stlink: use HTTPS for GitHub

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-embedded/stlink/stlink-1.4.0.ebuild | 2 +-
 dev-embedded/stlink/stlink-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-embedded/stlink/stlink-1.4.0.ebuild b/dev-embedded/stlink/stlink-1.4.0.ebuild
index 6711837c176..c7300459c35 100644
--- a/dev-embedded/stlink/stlink-1.4.0.ebuild
+++ b/dev-embedded/stlink/stlink-1.4.0.ebuild
@@ -8,7 +8,7 @@ inherit cmake-utils udev
 DESCRIPTION="stm32 discovery line linux programmer"
 HOMEPAGE="https://github.com/texane/stlink"
 if [[ ${PV} == "9999" ]]; then
-	EGIT_REPO_URI="git://github.com/texane/stlink.git"
+	EGIT_REPO_URI="https://github.com/texane/stlink.git"
 	inherit git-r3
 else
 	SRC_URI="https://github.com/texane/stlink/archive/${PV}/${P}.tar.gz"

diff --git a/dev-embedded/stlink/stlink-9999.ebuild b/dev-embedded/stlink/stlink-9999.ebuild
index 6711837c176..c7300459c35 100644
--- a/dev-embedded/stlink/stlink-9999.ebuild
+++ b/dev-embedded/stlink/stlink-9999.ebuild
@@ -8,7 +8,7 @@ inherit cmake-utils udev
 DESCRIPTION="stm32 discovery line linux programmer"
 HOMEPAGE="https://github.com/texane/stlink"
 if [[ ${PV} == "9999" ]]; then
-	EGIT_REPO_URI="git://github.com/texane/stlink.git"
+	EGIT_REPO_URI="https://github.com/texane/stlink.git"
 	inherit git-r3
 else
 	SRC_URI="https://github.com/texane/stlink/archive/${PV}/${P}.tar.gz"


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

* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/stlink/
@ 2018-07-10 21:34 Alexey Shvetsov
  0 siblings, 0 replies; 9+ messages in thread
From: Alexey Shvetsov @ 2018-07-10 21:34 UTC (permalink / raw
  To: gentoo-commits

commit:     13540863d7f3ed24d64317a54670eb54fb66dd05
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Tue Jul 10 21:33:25 2018 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Tue Jul 10 21:34:02 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13540863

dev-embedded/stlink: Version bump

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 dev-embedded/stlink/Manifest            |  1 +
 dev-embedded/stlink/stlink-1.5.0.ebuild | 36 +++++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/dev-embedded/stlink/Manifest b/dev-embedded/stlink/Manifest
index 4722be26279..6d0b6cd5b4a 100644
--- a/dev-embedded/stlink/Manifest
+++ b/dev-embedded/stlink/Manifest
@@ -1 +1,2 @@
 DIST stlink-1.4.0.tar.gz 138765 BLAKE2B e7dddd51e4ff0c0342b3df62a10b33736acf6380afc449e3ac7d67b607bc217df05b02ddcfed73d83190b9a5cb02f5f1d01beaab5de5f3cd92214fd916793b9e SHA512 cb7617068a6dcaf7e8d0ccfb8b918f0373f6120398dab40a8b8d6567705871226684fd19aad92e4bab623310a5da13ea9fd70153b619f58d3534f0a4ff3a9886
+DIST stlink-1.5.0.tar.gz 140484 BLAKE2B fa6f0a770ccc77629e4edcbd1a6112f8917ac84c00693756d4905b92c5ba83f445193e65c37cda5e5942605bb3da0fa6a6833af52d9572c73b0796ece754ffad SHA512 0e93c0fdcd377c6f2d452b9b6fa00b741dc0dd906673773ef09185aca4f63930db61e137bb28c47e34218edca9f7a80cd05352fb8f9d8e50b000c779cc36580a

diff --git a/dev-embedded/stlink/stlink-1.5.0.ebuild b/dev-embedded/stlink/stlink-1.5.0.ebuild
new file mode 100644
index 00000000000..b733c93f5a3
--- /dev/null
+++ b/dev-embedded/stlink/stlink-1.5.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit cmake-utils udev
+
+DESCRIPTION="stm32 discovery line linux programmer"
+HOMEPAGE="https://github.com/texane/stlink"
+if [[ ${PV} == "9999" ]]; then
+	EGIT_REPO_URI="https://github.com/texane/stlink.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/texane/stlink/archive/${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="virtual/libusb:1
+	>=dev-libs/glib-2.32.0:2
+	x11-libs/gtk+:3"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+src_configure() {
+	local mycmakeargs=(
+		-DSTLINK_UDEV_RULES_DIR="$(get_udevdir)"/rules.d
+		-DSTLINK_MODPROBED_DIR="${EPREFIX}/etc/modprobe.d"
+		-DLIB_INSTALL_DIR:PATH="$(get_libdir)"
+	)
+
+	cmake-utils_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/stlink/
@ 2019-02-15 16:48 Alexey Shvetsov
  0 siblings, 0 replies; 9+ messages in thread
From: Alexey Shvetsov @ 2019-02-15 16:48 UTC (permalink / raw
  To: gentoo-commits

commit:     66181f88d233ca2a92ddb784d9c3da6c49605013
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 15 16:47:26 2019 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Feb 15 16:48:24 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66181f88

dev-embedded/stlink: Version bump

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>

 dev-embedded/stlink/Manifest            |  1 +
 dev-embedded/stlink/stlink-1.5.1.ebuild | 36 +++++++++++++++++++++++++++++++++
 2 files changed, 37 insertions(+)

diff --git a/dev-embedded/stlink/Manifest b/dev-embedded/stlink/Manifest
index 6d0b6cd5b4a..ed02cc055d1 100644
--- a/dev-embedded/stlink/Manifest
+++ b/dev-embedded/stlink/Manifest
@@ -1,2 +1,3 @@
 DIST stlink-1.4.0.tar.gz 138765 BLAKE2B e7dddd51e4ff0c0342b3df62a10b33736acf6380afc449e3ac7d67b607bc217df05b02ddcfed73d83190b9a5cb02f5f1d01beaab5de5f3cd92214fd916793b9e SHA512 cb7617068a6dcaf7e8d0ccfb8b918f0373f6120398dab40a8b8d6567705871226684fd19aad92e4bab623310a5da13ea9fd70153b619f58d3534f0a4ff3a9886
 DIST stlink-1.5.0.tar.gz 140484 BLAKE2B fa6f0a770ccc77629e4edcbd1a6112f8917ac84c00693756d4905b92c5ba83f445193e65c37cda5e5942605bb3da0fa6a6833af52d9572c73b0796ece754ffad SHA512 0e93c0fdcd377c6f2d452b9b6fa00b741dc0dd906673773ef09185aca4f63930db61e137bb28c47e34218edca9f7a80cd05352fb8f9d8e50b000c779cc36580a
+DIST stlink-1.5.1.tar.gz 190182 BLAKE2B eaea0fbfb7ca3a42e3519e4a5568f254ef57c6223241b4dbeb116a2b1c54e960868bac5249774cfb84869ceb1e6d457d0fe449e682c566ba928ffa32ab1ff88e SHA512 cabf7f6f5a6f3655206694f21162e0d9ac663bea07354186836695da888f2ddebe3871ea56580d1d4781d4c3dbf8a8459ab87ccbcd6f181f8e651ef58e22a372

diff --git a/dev-embedded/stlink/stlink-1.5.1.ebuild b/dev-embedded/stlink/stlink-1.5.1.ebuild
new file mode 100644
index 00000000000..73375ac6857
--- /dev/null
+++ b/dev-embedded/stlink/stlink-1.5.1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit cmake-utils udev
+
+DESCRIPTION="stm32 discovery line linux programmer"
+HOMEPAGE="https://github.com/texane/stlink"
+if [[ ${PV} == "9999" ]]; then
+	EGIT_REPO_URI="https://github.com/texane/stlink.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/texane/stlink/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="virtual/libusb:1
+	>=dev-libs/glib-2.32.0:2
+	x11-libs/gtk+:3"
+DEPEND="${RDEPEND}
+	virtual/pkgconfig"
+
+src_configure() {
+	local mycmakeargs=(
+		-DSTLINK_UDEV_RULES_DIR="$(get_udevdir)"/rules.d
+		-DSTLINK_MODPROBED_DIR="${EPREFIX}/etc/modprobe.d"
+		-DLIB_INSTALL_DIR:PATH="$(get_libdir)"
+	)
+
+	cmake-utils_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/stlink/
@ 2019-02-15 16:49 Alexey Shvetsov
  0 siblings, 0 replies; 9+ messages in thread
From: Alexey Shvetsov @ 2019-02-15 16:49 UTC (permalink / raw
  To: gentoo-commits

commit:     ab04054f103cad66bf1e20637b27ba57ca2e2ad8
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 15 16:49:24 2019 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Fri Feb 15 16:49:24 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab04054f

dev-embedded/stlink: Drop old

Package-Manager: Portage-2.3.60, Repoman-2.3.12
Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>

 dev-embedded/stlink/Manifest            |  2 --
 dev-embedded/stlink/stlink-1.4.0.ebuild | 39 ---------------------------------
 dev-embedded/stlink/stlink-1.5.0.ebuild | 36 ------------------------------
 3 files changed, 77 deletions(-)

diff --git a/dev-embedded/stlink/Manifest b/dev-embedded/stlink/Manifest
index ed02cc055d1..41a7aa9f047 100644
--- a/dev-embedded/stlink/Manifest
+++ b/dev-embedded/stlink/Manifest
@@ -1,3 +1 @@
-DIST stlink-1.4.0.tar.gz 138765 BLAKE2B e7dddd51e4ff0c0342b3df62a10b33736acf6380afc449e3ac7d67b607bc217df05b02ddcfed73d83190b9a5cb02f5f1d01beaab5de5f3cd92214fd916793b9e SHA512 cb7617068a6dcaf7e8d0ccfb8b918f0373f6120398dab40a8b8d6567705871226684fd19aad92e4bab623310a5da13ea9fd70153b619f58d3534f0a4ff3a9886
-DIST stlink-1.5.0.tar.gz 140484 BLAKE2B fa6f0a770ccc77629e4edcbd1a6112f8917ac84c00693756d4905b92c5ba83f445193e65c37cda5e5942605bb3da0fa6a6833af52d9572c73b0796ece754ffad SHA512 0e93c0fdcd377c6f2d452b9b6fa00b741dc0dd906673773ef09185aca4f63930db61e137bb28c47e34218edca9f7a80cd05352fb8f9d8e50b000c779cc36580a
 DIST stlink-1.5.1.tar.gz 190182 BLAKE2B eaea0fbfb7ca3a42e3519e4a5568f254ef57c6223241b4dbeb116a2b1c54e960868bac5249774cfb84869ceb1e6d457d0fe449e682c566ba928ffa32ab1ff88e SHA512 cabf7f6f5a6f3655206694f21162e0d9ac663bea07354186836695da888f2ddebe3871ea56580d1d4781d4c3dbf8a8459ab87ccbcd6f181f8e651ef58e22a372

diff --git a/dev-embedded/stlink/stlink-1.4.0.ebuild b/dev-embedded/stlink/stlink-1.4.0.ebuild
deleted file mode 100644
index c349f40b793..00000000000
--- a/dev-embedded/stlink/stlink-1.4.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit cmake-utils udev
-
-DESCRIPTION="stm32 discovery line linux programmer"
-HOMEPAGE="https://github.com/texane/stlink"
-if [[ ${PV} == "9999" ]]; then
-	EGIT_REPO_URI="https://github.com/texane/stlink.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/texane/stlink/archive/${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="virtual/libusb:1
-	>=dev-libs/glib-2.32.0:2
-	x11-libs/gtk+:3"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-# Fix bug #630932; >1.4.0 should render this obsolete
-PATCHES=( "${FILESDIR}/${PN}-1.4.0-add-LIB_INSTALL_DIR-flag-630932.patch" )
-
-src_configure() {
-	local mycmakeargs=(
-		-DSTLINK_UDEV_RULES_DIR="$(get_udevdir)"/rules.d
-		-DSTLINK_MODPROBED_DIR="${EPREFIX}/etc/modprobe.d"
-		-DLIB_INSTALL_DIR:PATH="$(get_libdir)"
-	)
-
-	cmake-utils_src_configure
-}

diff --git a/dev-embedded/stlink/stlink-1.5.0.ebuild b/dev-embedded/stlink/stlink-1.5.0.ebuild
deleted file mode 100644
index b733c93f5a3..00000000000
--- a/dev-embedded/stlink/stlink-1.5.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit cmake-utils udev
-
-DESCRIPTION="stm32 discovery line linux programmer"
-HOMEPAGE="https://github.com/texane/stlink"
-if [[ ${PV} == "9999" ]]; then
-	EGIT_REPO_URI="https://github.com/texane/stlink.git"
-	inherit git-r3
-else
-	SRC_URI="https://github.com/texane/stlink/archive/${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-RDEPEND="virtual/libusb:1
-	>=dev-libs/glib-2.32.0:2
-	x11-libs/gtk+:3"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
-
-src_configure() {
-	local mycmakeargs=(
-		-DSTLINK_UDEV_RULES_DIR="$(get_udevdir)"/rules.d
-		-DSTLINK_MODPROBED_DIR="${EPREFIX}/etc/modprobe.d"
-		-DLIB_INSTALL_DIR:PATH="$(get_libdir)"
-	)
-
-	cmake-utils_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/stlink/
@ 2020-05-18  8:20 Alexey Shvetsov
  0 siblings, 0 replies; 9+ messages in thread
From: Alexey Shvetsov @ 2020-05-18  8:20 UTC (permalink / raw
  To: gentoo-commits

commit:     2090b95999c72ebefa78cf8ab25b094e75151b01
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Mon May 18 08:19:52 2020 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Mon May 18 08:19:52 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2090b959

dev-embedded/stlink: version bump

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>

 dev-embedded/stlink/Manifest                                     | 2 +-
 dev-embedded/stlink/{stlink-1.5.1.ebuild => stlink-1.6.0.ebuild} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-embedded/stlink/Manifest b/dev-embedded/stlink/Manifest
index 41a7aa9f047..276535248c4 100644
--- a/dev-embedded/stlink/Manifest
+++ b/dev-embedded/stlink/Manifest
@@ -1 +1 @@
-DIST stlink-1.5.1.tar.gz 190182 BLAKE2B eaea0fbfb7ca3a42e3519e4a5568f254ef57c6223241b4dbeb116a2b1c54e960868bac5249774cfb84869ceb1e6d457d0fe449e682c566ba928ffa32ab1ff88e SHA512 cabf7f6f5a6f3655206694f21162e0d9ac663bea07354186836695da888f2ddebe3871ea56580d1d4781d4c3dbf8a8459ab87ccbcd6f181f8e651ef58e22a372
+DIST stlink-1.6.0.tar.gz 203462 BLAKE2B 114e3426c8f622f0b8f3b0d12d30ea178c915b521e7d37505577c877c20fe8c8d4dce4189a1dc2bb58a711ead0eb82e13799bb80065e45afc8b5a53d2247ef1f SHA512 0bf2416dac69e490560063714d630c4f549568bd9047113fb334f0841f5db23b97876307be8f0b1731863a2438c9502b9916d0d652c516d50969cb8b2cfa1a15

diff --git a/dev-embedded/stlink/stlink-1.5.1.ebuild b/dev-embedded/stlink/stlink-1.6.0.ebuild
similarity index 94%
rename from dev-embedded/stlink/stlink-1.5.1.ebuild
rename to dev-embedded/stlink/stlink-1.6.0.ebuild
index 73375ac6857..0579066f0bc 100644
--- a/dev-embedded/stlink/stlink-1.5.1.ebuild
+++ b/dev-embedded/stlink/stlink-1.6.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI=7
 
 inherit cmake-utils udev
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/stlink/
@ 2020-11-15 23:24 David Seifert
  0 siblings, 0 replies; 9+ messages in thread
From: David Seifert @ 2020-11-15 23:24 UTC (permalink / raw
  To: gentoo-commits

commit:     2bf077e52adbab640fa957bff3d4b322cdf5f62d
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sun Nov 15 23:22:46 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Nov 15 23:22:46 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bf077e5

dev-embedded/stlink: disable static libs

Closes: https://bugs.gentoo.org/735740
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-embedded/stlink/stlink-1.6.0.ebuild | 1 +
 dev-embedded/stlink/stlink-9999.ebuild  | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-embedded/stlink/stlink-1.6.0.ebuild b/dev-embedded/stlink/stlink-1.6.0.ebuild
index 0579066f0bc..7d2549c15a3 100644
--- a/dev-embedded/stlink/stlink-1.6.0.ebuild
+++ b/dev-embedded/stlink/stlink-1.6.0.ebuild
@@ -29,6 +29,7 @@ src_configure() {
 	local mycmakeargs=(
 		-DSTLINK_UDEV_RULES_DIR="$(get_udevdir)"/rules.d
 		-DSTLINK_MODPROBED_DIR="${EPREFIX}/etc/modprobe.d"
+		-DSTLINK_STATIC_LIB=OFF
 		-DLIB_INSTALL_DIR:PATH="$(get_libdir)"
 	)
 

diff --git a/dev-embedded/stlink/stlink-9999.ebuild b/dev-embedded/stlink/stlink-9999.ebuild
index 479ca67cd59..cadef633bb8 100644
--- a/dev-embedded/stlink/stlink-9999.ebuild
+++ b/dev-embedded/stlink/stlink-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -29,6 +29,7 @@ src_configure() {
 	local mycmakeargs=(
 		-DSTLINK_UDEV_RULES_DIR="$(get_udevdir)"/rules.d
 		-DSTLINK_MODPROBED_DIR="${EPREFIX}/etc/modprobe.d"
+		-DSTLINK_STATIC_LIB=OFF
 		-DLIB_INSTALL_DIR:PATH="$(get_libdir)"
 	)
 


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

* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/stlink/
@ 2020-11-18 13:19 David Seifert
  0 siblings, 0 replies; 9+ messages in thread
From: David Seifert @ 2020-11-18 13:19 UTC (permalink / raw
  To: gentoo-commits

commit:     bacfdf5fa50b1a049ada083c50ac8d50dfb3fded
Author:     Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Wed Nov 18 13:18:25 2020 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Nov 18 13:18:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bacfdf5f

dev-embedded/stlink: inherit xdg, port to cmake.eclass, fix BDEPEND

Closes: https://bugs.gentoo.org/754972
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-embedded/stlink/stlink-1.6.0.ebuild |  9 ++++-----
 dev-embedded/stlink/stlink-9999.ebuild  | 13 ++++++-------
 2 files changed, 10 insertions(+), 12 deletions(-)

diff --git a/dev-embedded/stlink/stlink-1.6.0.ebuild b/dev-embedded/stlink/stlink-1.6.0.ebuild
index 7d2549c15a3..0c5402c06fe 100644
--- a/dev-embedded/stlink/stlink-1.6.0.ebuild
+++ b/dev-embedded/stlink/stlink-1.6.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit cmake-utils udev
+inherit udev xdg cmake
 
 DESCRIPTION="stm32 discovery line linux programmer"
 HOMEPAGE="https://github.com/texane/stlink"
@@ -17,13 +17,12 @@ fi
 
 LICENSE="BSD"
 SLOT="0"
-IUSE=""
 
 RDEPEND="virtual/libusb:1
 	>=dev-libs/glib-2.32.0:2
 	x11-libs/gtk+:3"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
 
 src_configure() {
 	local mycmakeargs=(
@@ -33,5 +32,5 @@ src_configure() {
 		-DLIB_INSTALL_DIR:PATH="$(get_libdir)"
 	)
 
-	cmake-utils_src_configure
+	cmake_src_configure
 }

diff --git a/dev-embedded/stlink/stlink-9999.ebuild b/dev-embedded/stlink/stlink-9999.ebuild
index cadef633bb8..0c5402c06fe 100644
--- a/dev-embedded/stlink/stlink-9999.ebuild
+++ b/dev-embedded/stlink/stlink-9999.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI=7
 
-inherit cmake-utils udev
+inherit udev xdg cmake
 
 DESCRIPTION="stm32 discovery line linux programmer"
 HOMEPAGE="https://github.com/texane/stlink"
@@ -11,19 +11,18 @@ if [[ ${PV} == "9999" ]]; then
 	EGIT_REPO_URI="https://github.com/texane/stlink.git"
 	inherit git-r3
 else
-	SRC_URI="https://github.com/texane/stlink/archive/${PV}/${P}.tar.gz"
+	SRC_URI="https://github.com/texane/stlink/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64"
 fi
 
 LICENSE="BSD"
 SLOT="0"
-IUSE=""
 
 RDEPEND="virtual/libusb:1
 	>=dev-libs/glib-2.32.0:2
 	x11-libs/gtk+:3"
-DEPEND="${RDEPEND}
-	virtual/pkgconfig"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
 
 src_configure() {
 	local mycmakeargs=(
@@ -33,5 +32,5 @@ src_configure() {
 		-DLIB_INSTALL_DIR:PATH="$(get_libdir)"
 	)
 
-	cmake-utils_src_configure
+	cmake_src_configure
 }


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

* [gentoo-commits] repo/gentoo:master commit in: dev-embedded/stlink/
@ 2021-09-15  7:52 Alexey Shvetsov
  0 siblings, 0 replies; 9+ messages in thread
From: Alexey Shvetsov @ 2021-09-15  7:52 UTC (permalink / raw
  To: gentoo-commits

commit:     560c4035e7ca446491cba08a45f0f8780937b2c4
Author:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 15 07:52:00 2021 +0000
Commit:     Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
CommitDate: Wed Sep 15 07:52:00 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=560c4035

dev-embedded/stlink: Version bump

Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Alexey Shvetsov <alexxy <AT> gentoo.org>

 dev-embedded/stlink/Manifest                                     | 2 +-
 dev-embedded/stlink/{stlink-1.6.0.ebuild => stlink-1.7.0.ebuild} | 4 ++--
 dev-embedded/stlink/stlink-9999.ebuild                           | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-embedded/stlink/Manifest b/dev-embedded/stlink/Manifest
index 276535248c4..f6a25c0bb17 100644
--- a/dev-embedded/stlink/Manifest
+++ b/dev-embedded/stlink/Manifest
@@ -1 +1 @@
-DIST stlink-1.6.0.tar.gz 203462 BLAKE2B 114e3426c8f622f0b8f3b0d12d30ea178c915b521e7d37505577c877c20fe8c8d4dce4189a1dc2bb58a711ead0eb82e13799bb80065e45afc8b5a53d2247ef1f SHA512 0bf2416dac69e490560063714d630c4f549568bd9047113fb334f0841f5db23b97876307be8f0b1731863a2438c9502b9916d0d652c516d50969cb8b2cfa1a15
+DIST stlink-1.7.0.tar.gz 334883 BLAKE2B 7e00a01912e1d21fa29a7299fbb21f8e85540d3e4f4c90be8fcd9b4a8ef14bae2c0cd460463babf04fd52a11ebeac9601a5f31874dd4cce3077434c2bfc96168 SHA512 58b73c7a73809f36ab8ef53370bcbdba7456433c8559f350349febd282188541184b5c171eb2ca1ad38ec4b3ae32d3a89895a208bcacc264ec0aed5f61e6bcd0

diff --git a/dev-embedded/stlink/stlink-1.6.0.ebuild b/dev-embedded/stlink/stlink-1.7.0.ebuild
similarity index 94%
rename from dev-embedded/stlink/stlink-1.6.0.ebuild
rename to dev-embedded/stlink/stlink-1.7.0.ebuild
index 0c5402c06fe..e937418ed74 100644
--- a/dev-embedded/stlink/stlink-1.6.0.ebuild
+++ b/dev-embedded/stlink/stlink-1.7.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit udev xdg cmake
 

diff --git a/dev-embedded/stlink/stlink-9999.ebuild b/dev-embedded/stlink/stlink-9999.ebuild
index 0c5402c06fe..e937418ed74 100644
--- a/dev-embedded/stlink/stlink-9999.ebuild
+++ b/dev-embedded/stlink/stlink-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit udev xdg cmake
 


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

end of thread, other threads:[~2021-09-15  7:52 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-26 22:22 [gentoo-commits] repo/gentoo:master commit in: dev-embedded/stlink/ Alexey Shvetsov
  -- strict thread matches above, loose matches on Subject: below --
2017-07-30  8:47 Michał Górny
2018-07-10 21:34 Alexey Shvetsov
2019-02-15 16:48 Alexey Shvetsov
2019-02-15 16:49 Alexey Shvetsov
2020-05-18  8:20 Alexey Shvetsov
2020-11-15 23:24 David Seifert
2020-11-18 13:19 David Seifert
2021-09-15  7:52 Alexey Shvetsov

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