summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* dev-util/android-studio: bump 3.1.4Jason Zaman2018-08-252-0/+113
| | | | Package-Manager: Portage-2.3.40, Repoman-2.3.9
* dev-util/boost-build: mark s390 stableMikle Kolyada2018-08-241-1/+1
| | | | Package-Manager: Portage-2.3.40, Repoman-2.3.9
* dev-util/envman: version bump 1.2.1Karol Wrótniak2018-08-222-0/+39
| | | | Closes: https://github.com/gentoo/gentoo/pull/9626
* dev-util/debootstrap: Old.Jeroen Roovers2018-08-222-49/+0
| | | | Package-Manager: Portage-2.3.48, Repoman-2.3.10
* dev-util/debootstrap: Version 1.0.108.Jeroen Roovers2018-08-222-0/+49
| | | | Package-Manager: Portage-2.3.48, Repoman-2.3.10
* dev-util/shellcheck: require quickcheck[template_haskell]Jeffrey Lin2018-08-211-1/+1
| | | | | Package-Manager: Portage-2.3.47, Repoman-2.3.10 Closes: https://github.com/gentoo/gentoo/pull/9642
* dev-util/dwarves: Version bump to 1.12 and use EAPI 6Matthias Schwarzott2018-08-212-0/+45
| | | | Package-Manager: Portage-2.3.47, Repoman-2.3.10
* dev-util/kdevelop-python: 5.2.4 version bumpAndreas Sturmlechner2018-08-212-0/+54
| | | | Package-Manager: Portage-2.3.48, Repoman-2.3.10
* dev-util/kdevelop-php: 5.2.4 version bumpAndreas Sturmlechner2018-08-212-0/+41
| | | | Package-Manager: Portage-2.3.48, Repoman-2.3.10
* dev-util/kdevelop: 5.2.4 version bumpAndreas Sturmlechner2018-08-212-0/+135
| | | | Package-Manager: Portage-2.3.48, Repoman-2.3.10
* dev-util/glib-utils: add missing PYTHON_REQUIRED_USEMart Raudsepp2018-08-211-0/+1
| | | | Package-Manager: Portage-2.3.47, Repoman-2.3.10
* dev-util/gdbus-codegen: Enable py3.7Michał Górny2018-08-201-1/+1
|
* dev-util/edb-debugger: version bump to 1.0.0 and cleanup.Petros Siligkounas2018-08-205-41/+70
| | | | | | | Removed (old) specific versions of Boost and Graphviz. Package-Manager: Portage-2.3.46, Repoman-2.3.10 Closes: https://github.com/gentoo/gentoo/pull/9344
* dev/util-stepman: version bump to 0.10.2.Karol Wrótniak2018-08-202-0/+35
| | | | | Closes: https://bugs.gentoo.org/663606 Closes: https://github.com/gentoo/gentoo/pull/9625
* dev-util/glib-utils: drop python2 from compatMart Raudsepp2018-08-201-1/+1
| | | | | | | | | | | | python2 handles non-utf8 files badly for glib-mkenums, while it seems to be just a warning with python3. So drop python2 support, at least for now. Before it was kept due to bad glib[$PYTHON_USEDEP] deps, when mkenums was part of dev-libs/glib, but that's not a concern with this new package. Bug: https://bugs.gentoo.org/647892 Package-Manager: Portage-2.3.47, Repoman-2.3.10
* dev-util/gdbus-codegen: use python-single-r1 as more appropriateMart Raudsepp2018-08-201-0/+1
| | | | Package-Manager: Portage-2.3.47, Repoman-2.3.10
* dev-util/glib-utils: bump to 2.56.2; now ships the python build utilsMart Raudsepp2018-08-202-0/+43
| | | | | | | | | | The 2.52.3 version here was just a transitional empty package with stable keywords. This 2.56.2 version now actually ships the python utils glib-genmarshal/glib-mkenums/gtester-report itself and thus blocks older glib that shipped it itself instead. The soft blocker should ensure no file collisions and a smooth migration. Package-Manager: Portage-2.3.47, Repoman-2.3.10
* dev-util/gdbus-codegen: bump to 2.56.2Mart Raudsepp2018-08-203-0/+101
| | | | Package-Manager: Portage-2.3.47, Repoman-2.3.10
* dev-util/glib-utils: Build time utilities for glib using projectsMart Raudsepp2018-08-202-0/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This package will house a set of utilities split out of dev-libs/glib, primarily to avoid a runtime dependency on python in dev-libs/glib itself, for e.g. embedded system purposes. Once the consumers of these utilities build depend on this and the forced dep in glib can be dropped, that is. Initially glib-genmarshal, glib-mkenums and gtester-report are part of this package, as these require python at runtime. gdbus-codegen is likely to remain a separate package, as it installs a bigger python module. glib-compile-resources might at some point be moved here, as then we can express its potential runtime dependencies of libxml2:2 and gdk-pixbuf:2 here, but this is undecided as of yet, and won't happen before meson is used for building glib. This commit adds a transitional glib-utils-2.52.3 with stable keywords for migration purposes. It just pulls in glib itself, which at that version provides the tools itself. This allows other packages to start build depending on dev-util/glib-utils right away, as there will be no wait for stable keywords. If your package calls glib-genmarshal or glib-mkenums, then please add a build dependency on dev-util/glib-utils. With meson a good hint of such usage is the occurrence of "genmarshal" or "mkenums" in any meson.build file; usually with "gnome." in front, but it depends under what name the meson gnome module is imported as ("gnome" is the convention out there). With autotools a good hint is a direct call to either utility in any Makefile.am file, however with autotools generated marshallers or enums are often shipped in release tarballs without a need to regenerate them, in which case the dependency may be unnecessary. gtester-report is a deprecated utility to generate HTML reports out of gtester output. Some packages test phases have a dependency on it, or a build time check, even if not actually used in relevant make targets. In such a case it might be more appropriate to shortcut the check with something like "GTESTER_REPORT=$(type -P true)" instead of depending on this package, as no-one is going to be looking at those HTML reports. But sometimes it might be used in default check targets, which would have to be patched out; so just depending on glib-utils is a possibility until such a time (or if not worth the effort). Package-Manager: Portage-2.3.47, Repoman-2.3.10
* dev-util/cutter: version bump to 1.7.Tact Yoshida2018-08-203-0/+77
| | | | | Package-Manager: Portage-2.3.44, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/9622
* dev-util/pycharm-community: Remove old.Michael Weber2018-08-192-54/+0
| | | | Package-Manager: Portage-2.3.45, Repoman-2.3.10
* dev-util/pycharm-professional: Version bump, remove old.Michael Weber2018-08-194-117/+1
| | | | Package-Manager: Portage-2.3.45, Repoman-2.3.10
* dev-util/pycharm-community: Version bump.Michael Weber2018-08-193-56/+1
| | | | Package-Manager: Portage-2.3.45, Repoman-2.3.10
* dev-util/gn: bump to 0.1463Mike Gilbert2018-08-193-0/+114
| | | | Package-Manager: Portage-2.3.46_p1_p562786, Repoman-2.3.10_p36_p562786
* dev-util/dbus-test-runner: stable 15.04.0_p100 for sparc, bug #663972Rolf Eike Beer2018-08-191-1/+1
| | | | | Package-Manager: Portage-2.3.40, Repoman-2.3.9 RepoMan-Options: --include-arches="sparc"
* dev-util/kdevelop: Fix USE reviewboardAndreas Sturmlechner2018-08-191-1/+3
| | | | Package-Manager: Portage-2.3.47, Repoman-2.3.10
* dev-util/apitrace: Drop unused cmake argAndreas Sturmlechner2018-08-181-1/+0
| | | | | | Arg is being removed by disable-multiarch.patch Package-Manager: Portage-2.3.47, Repoman-2.3.10
* dev-util/apitrace: Drop 7.1 (r0)Andreas Sturmlechner2018-08-181-97/+0
| | | | Package-Manager: Portage-2.3.47, Repoman-2.3.10
* dev-util/apitrace: EAPI-6 bump, drop eutilsAndreas Sturmlechner2018-08-181-9/+9
| | | | | | | Add missing || die local mycmakeargs Package-Manager: Portage-2.3.47, Repoman-2.3.10
* dev-util/apitrace: Cleanup, sort, fix DEPENDsAndreas Sturmlechner2018-08-181-5/+5
| | | | | | | - Add sys-libs/zlib slot op - Drop useless sys-devel/gcc DEPEND, old versions are masked Package-Manager: Portage-2.3.47, Repoman-2.3.10
* dev-util/apitrace: Enforce non-gles2 USE-dep on QtEoD2018-08-181-0/+97
| | | | | Closes: https://bugs.gentoo.org/594066 Package-Manager: Portage-2.3.47, Repoman-2.3.10
* dev-util/dbus-test-runner:Mikle Kolyada2018-08-181-1/+1
| | | | Package-Manager: Portage-2.3.40, Repoman-2.3.9
* dev-util/dbus-test-runner: x86 stable (bug #663508)Thomas Deutschmann2018-08-161-2/+2
| | | | Package-Manager: Portage-2.3.46, Repoman-2.3.10
* dev-util/jenkins-bin: add 2.121.3 and 2.138Hans de Graaff2018-08-163-0/+94
| | | | Package-Manager: Portage-2.3.40, Repoman-2.3.9
* dev-util/lldb: Drop 6.0.9999Michał Górny2018-08-151-118/+0
|
* dev-util/debootstrap: Old.Jeroen Roovers2018-08-153-98/+0
| | | | Package-Manager: Portage-2.3.46, Repoman-2.3.10
* dev-util/debootstrap: Version 1.0.107.Jeroen Roovers2018-08-152-0/+49
| | | | Package-Manager: Portage-2.3.46, Repoman-2.3.10
* dev-util/catalyst: 3.0.2 stable on amd64 & x86Ben Kohler2018-08-151-1/+1
| | | | Package-Manager: Portage-2.3.46, Repoman-2.3.10
* dev-util/ccache: bump up to 3.4.2, bug #647200Sergei Trofimovich2018-08-153-0/+96
| | | | | | Reported-by: Perfect Gentleman Closes: https://bugs.gentoo.org/647200 Package-Manager: Portage-2.3.46, Repoman-2.3.10
* dev-util/sysdig: Bump to 0.23.1 (bugfixes)Michał Górny2018-08-152-0/+93
|
* dev-util/stressapptest: version bump to 1.0.9Mike Frysinger2018-08-142-0/+25
|
* dev-util/strace: Removed old.Lars Wendler2018-08-142-86/+0
| | | | Package-Manager: Portage-2.3.46, Repoman-2.3.10
* dev-util/strace: Bump to version 4.24Lars Wendler2018-08-142-0/+92
| | | | Package-Manager: Portage-2.3.46, Repoman-2.3.10
* dev-util/bitrise: bump version 1.20.0Karol Wrótniak2018-08-142-0/+50
| | | | Closes: https://github.com/gentoo/gentoo/pull/9345
* dev-util/imediff2: Replace versionator with eapi7-verBrian Evans2018-08-111-2/+2
| | | | Package-Manager: Portage-2.3.45, Repoman-2.3.10
* dev-util/devhelp: bump to 3.26.1Mart Raudsepp2018-08-112-0/+68
| | | | Package-Manager: Portage-2.3.43, Repoman-2.3.10
* dev-util/cppcheck: Minor description fixAndreas Sturmlechner2018-08-113-3/+3
| | | | Package-Manager: Portage-2.3.45, Repoman-2.3.10
* dev-util/cppcheck: Sync live with 1.84 changesAndreas Sturmlechner2018-08-111-15/+15
| | | | Package-Manager: Portage-2.3.45, Repoman-2.3.10
* dev-util/cppcheck: version bump to 1.84Nikos Chantziaras2018-08-112-0/+108
| | | | | | | | Ebuild improvements. LICENSE changed from "GPL-3" to "GPL-3+". Closes: https://bugs.gentoo.org/646608 Package-Manager: Portage-2.3.45, Repoman-2.3.10 Closes: https://github.com/gentoo/gentoo/pull/9515
* dev-util/cmake: Bump to version 3.12.1Lars Wendler2018-08-102-0/+224
| | | | Package-Manager: Portage-2.3.45, Repoman-2.3.10