diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-util/qstlink2 | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-util/qstlink2')
-rw-r--r-- | dev-util/qstlink2/Manifest | 1 | ||||
-rw-r--r-- | dev-util/qstlink2/metadata.xml | 20 | ||||
-rw-r--r-- | dev-util/qstlink2/qstlink2-1.0.3.ebuild | 23 |
3 files changed, 44 insertions, 0 deletions
diff --git a/dev-util/qstlink2/Manifest b/dev-util/qstlink2/Manifest new file mode 100644 index 000000000000..c10c0fbab9b8 --- /dev/null +++ b/dev-util/qstlink2/Manifest @@ -0,0 +1 @@ +DIST qstlink2-1.0.3.tar.gz 661197 SHA256 c6e39bd3cde87c932b42c0831bb243f7148e741bf788643e438cdb98b3fb3b04 SHA512 bd6d083623296cfcbc407e8c9c920de24efc91f508fb8bfe64d538ff776ed927cb89efba5c265c393b877cee995ed022b6ac51e081423b787cbcbb176215231b WHIRLPOOL 74243268a657fd8980a0aca3e64a0d7eccba2ae12f090aabe3170d8d82eb85a5909e2fb7118b8c7f46258f0618f9b30204fd6f2bf5b193f3cf50dd2b0faf8154 diff --git a/dev-util/qstlink2/metadata.xml b/dev-util/qstlink2/metadata.xml new file mode 100644 index 000000000000..72c026130307 --- /dev/null +++ b/dev-util/qstlink2/metadata.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>proxy-maintainers</herd> + <maintainer> + <email>no111u3@gmail.com</email> + <name>Boris Vinogradov</name> + </maintainer> + <maintainer> + <email>@gentoo.org</email> + </maintainer> + <longdescription> + This is a ST-Link V2 (Debugger/Programmer) client developped for Linux, OSX and Windows. + + It is developped using QT and LibUsb/WinUsb. + </longdescription> + <upstream> + <remote-id type="github">mobyfab/qstlink2</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-util/qstlink2/qstlink2-1.0.3.ebuild b/dev-util/qstlink2/qstlink2-1.0.3.ebuild new file mode 100644 index 000000000000..7b7f46c0b7cb --- /dev/null +++ b/dev-util/qstlink2/qstlink2-1.0.3.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit qt4-r2 + +DESCRIPTION="GUI and CLI ST-Link V2(Debugger/Programmer) client" +HOMEPAGE="https://code.google.com/p/qstlink2/" +SRC_URI="https://github.com/mobyfab/QStlink2/archive/v1.0.3.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="" + +DEPEND="virtual/libusb:0 + dev-qt/qtcore:4 + dev-qt/qtgui:4" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/QStlink2-${PV}" |