On Thu, 2014-01-30 at 10:48 -0800, Thiago Macieira wrote:
> On quinta-feira, 30 de janeiro de 2014 18:12:22, Patrick Ohly wrote:
> > I think it is time to establish a procedure for identifying such absent
> > developers. Thiago, you helped define the Tizen Governance and how
> > contributors can obtain some of the roles [2]. Can you also do the next
> > step and define how inactive developers can be identified and what
> > should be done in such cases?
> > 
> > It might be as simple as pinging people at certain intervals to see
> > whether and how they respond; some might have simply forgotten that
> > certain roles are still assigned to them. More drastic measures might be
> > needed when developers are not doing their job, but refuse to step down
> > or no replacement can be found.
> > 
> > [1] https://lists.tizen.org/pipermail/dev/2013-December/001164.html
> > [2]
> > http://events.linuxfoundation.org/sites/events/files/slides/Tizen%20Develop
> > ment%20and%20Governance%20Model%20TDS%2020131111.pdf
> 
> Ensuring that everything got reviewed is the responsibility of the 
> maintainer. 
> But it's the *interest* of the contributor, so the contributor should pay 
> attention to the state of the contribution.
> 
> If a contribution goes unreviewed after a while, ping the reviewers.

That's impractical when the list of reviewers is larger than a handful.
Who should get contacted? Randomly? Chances are high that the ones not
doing any active work on the package will get pinged, annoying them
further and causing additional delays.

What's your take on those packages which currently have more than ten
reviewers?

> If it 
> still doesn't get reviewed, ping the maintainer (write "maintainer ping", for 
> example). Sometimes the maintainer will not notice that it's the same 
> contribution that no one else reviewed.

In Tizen 3.0, we have 1276 packages (= packages with a "tizen" branch).
Of those, 655 have no dedicated maintainer. What should be done about
those?

Attached is the script to calculate these numbers and its full output,
which also lists the packages without maintainers. This is based on the
git-trees from:

commit 0f13aa8c4a6d926b3e32b5b55de4aecfb4545e40
Author: Alexander Kanevskiy <[email protected]>
Date:   Thu Dec 19 13:26:25 2013 +0200

    Added profile/ivi/setup-ivi


-- 
Best Regards, Patrick Ohly

The content of this message is my personal opinion only and although
I am an employee of Intel, the statements I make here in no way
represent Intel's position on the issue, nor am I authorized to speak
on behalf of Intel on this matter.

#!/usr/bin/python

import sys
import re


trees = sys.stdin.read()
entries = trees.split('\n\n')

total = 0
unmaintained = []
is30 = re.compile(r'^B: tizen$', re.MULTILINE)
maintainer = re.compile('^M: (.*)\n', re.MULTILINE)
name = re.compile('T: (.*)\n', re.MULTILINE)
for package in entries:
    t = name.search(package).group(1)
    if is30.search(package):
        total += 1
        if not maintainer.search(package):
            unmaintained.append(t)

print '%d packages out of %d in Tizen 3.0 have no dedicated maintainer.' % (len(unmaintained), total)
unmaintained.sort()
print '\n'.join(unmaintained)

655 packages out of 1276 in Tizen 3.0 have no dedicated maintainer.
adaptation/ap_samsung/libtbm-emulator
adaptation/ap_samsung/libtbm-exynos4412
adaptation/bluetooth-tools
adaptation/face-engine
adaptation/intel_mfld/bootstub-mfld-blackbay
adaptation/intel_mfld/device-configs-mfld-blackbay
adaptation/intel_mfld/device-manager-plugin-mfld-blackbay
adaptation/intel_mfld/linux-firmware-mfld
adaptation/intel_mfld/mmfw-sysconf-mfld-blackbay
adaptation/intel_mfld/preos-runtime
adaptation/intel_mfld/psb-headers
adaptation/intel_mfld/psb-video-mfld
adaptation/intel_mfld/pvr-bin-mdfld
adaptation/intel_mfld/tel-plugin-mfld-blackbay
adaptation/intel_mfld/xorg-server-configs-mfld-blackbay
adaptation/xorg/driver/xserver-xorg-video-emulator
apps/core/preloaded/app-selector
apps/core/preloaded/call-setting
apps/core/preloaded/ciss
apps/core/preloaded/draglock
apps/core/preloaded/gnome-common
apps/core/preloaded/libslp-alarm
apps/core/preloaded/libslp-memo
apps/core/preloaded/libug-worldclock-efl
apps/core/preloaded/my-account
apps/core/preloaded/pwlock
apps/core/preloaded/quickpanel
apps/core/preloaded/sat-ui
apps/core/preloaded/ug-memo-efl
apps/core/preloaded/ug-setting-manage-applications-efl
apps/core/preloaded/video-player
apps/web/sample/AnalogWatch
apps/web/sample/AudioFilter
apps/web/sample/DeviceMotionCapture
apps/web/sample/ImageRotation
apps/web/sample/OfflineClockImage
apps/web/sample/Template
apps/web/sample/TemporaryStorage
apps/web/sample/TouchPaint
framework/osp/face
platform/adaptation/emulator/alsa-scenario-scn-data-0-emul
platform/adaptation/emulator/device-manager-plugin-emul
platform/adaptation/emulator/emulator-daemon
platform/adaptation/emulator/emulator-plugin-accel
platform/adaptation/emulator/emulator-plugin-accel-filter
platform/adaptation/emulator/emulator-plugin-accel-proc
platform/adaptation/emulator/emulator-plugin-geo
platform/adaptation/emulator/emulator-plugin-geo-filter
platform/adaptation/emulator/emulator-plugin-geo-proc
platform/adaptation/emulator/emulator-plugin-gyro-pkgs
platform/adaptation/emulator/emulator-plugin-light
platform/adaptation/emulator/emulator-plugin-light-filter
platform/adaptation/emulator/emulator-plugin-light-proc
platform/adaptation/emulator/emulator-plugin-motion-proc
platform/adaptation/emulator/emulator-plugin-nfc
platform/adaptation/emulator/emulator-plugin-proxi
platform/adaptation/emulator/emulator-plugin-proxi-filter
platform/adaptation/emulator/emulator-plugin-proxi-proc
platform/adaptation/emulator/emulator-yagl
platform/adaptation/emulator/gst-plugins-emulator
platform/adaptation/emulator/libtbm-vigs
platform/adaptation/emulator/sensor-daemon-emulator
platform/adaptation/emulator/system-plugin-emulator
platform/adaptation/emulator/vmodem-daemon-emulator
platform/adaptation/emulator/xf86-misc-vigs
platform/adaptation/emulator/xf86-video-vigs
platform/adaptation/intel_mfld/bootstub-mfld-blackbay
platform/adaptation/intel_mfld/device-configs-mfld-blackbay
platform/adaptation/intel_mfld/device-manager-plugin-mfld-blackbay
platform/adaptation/intel_mfld/linux-firmware-mfld
platform/adaptation/intel_mfld/mmfw-sysconf-mfld-blackbay
platform/adaptation/intel_mfld/preos-runtime
platform/adaptation/intel_mfld/psb-headers
platform/adaptation/intel_mfld/psb-video-mfld
platform/adaptation/intel_mfld/pvr-bin-mdfld
platform/adaptation/intel_mfld/xorg-server-configs-mfld-blackbay
platform/adaptation/samsung_exynos/libtbm-exynos4412
platform/adaptation/samsung_exynos/xf86-misc-exynos4412
platform/adaptation/samsung_exynos/xf86-video-exynos
platform/adaptation/xf86-input-evdevmultitouch
platform/adaptation/xf86-input-gesture
platform/adaptation/xf86-misc-emulfb
platform/adaptation/xf86-module-xdbg
platform/adaptation/xf86-video-emulfb
platform/core/api/app-manager
platform/core/api/application
platform/core/api/common
platform/core/api/connection
platform/core/api/device
platform/core/api/efl-util
platform/core/api/email
platform/core/api/face
platform/core/api/favorites
platform/core/api/geocoder
platform/core/api/haptic
platform/core/api/location-manager
platform/core/api/media-key
platform/core/api/package-manager
platform/core/api/poi
platform/core/api/power
platform/core/api/route
platform/core/api/sensor
platform/core/api/system-settings
platform/core/api/usb-accessory
platform/core/appfw/aul-1
platform/core/appfw/slp-pkgmgr
platform/core/appfw/sppc
platform/core/base/default-files-tizen
platform/core/base/sys-string-0
platform/core/connectivity/nfc-manager-neard
platform/core/graphics/default-fonts-fc-sdk
platform/core/graphics/default-fonts-sdk
platform/core/graphics/opengl-es
platform/core/location/gps-manager
platform/core/location/liblocation-appman
platform/core/location/libslp-location
platform/core/location/location-module
platform/core/location/ug-setting-location-efl
platform/core/messaging/email-service
platform/core/security/default-ac-domains
platform/core/security/drm-service-core-tizen
platform/core/system/dlog
platform/core/system/libslp-sysman
platform/core/system/libsvi
platform/core/system/svi-data
platform/core/uifw/efl-assist
platform/core/uifw/libttssmt
platform/framework/native/app-controls
platform/framework/native/app-service
platform/framework/native/appfw
platform/framework/native/appwidget-service
platform/framework/native/certificate-selector
platform/framework/native/channel-service
platform/framework/native/face
platform/framework/native/ime
platform/framework/native/locations
platform/framework/native/messaging
platform/framework/native/uifw
platform/framework/native/uix
platform/framework/native/vision
platform/framework/native/web
platform/framework/web/crosswalk
platform/framework/web/data-provider-slave
platform/framework/web/heap-monitor
platform/framework/web/livebox
platform/framework/web/livebox-cpp
platform/framework/web/livebox-edje
platform/framework/web/livebox-service
platform/framework/web/livebox-viewer
platform/framework/web/provider
platform/framework/web/tizen-extensions-crosswalk
platform/framework/web/web-provider
platform/framework/web/webkit-efl
platform/framework/web/wrt
platform/kernel/kernel-mfld-blackbay
platform/kernel/linux-3.10
platform/upstream/SDL
platform/upstream/asciidoc
platform/upstream/aspell
platform/upstream/atk
platform/upstream/autoconf
platform/upstream/autoconf213
platform/upstream/automake
platform/upstream/base-manifest
platform/upstream/bc
platform/upstream/bdftopcf
platform/upstream/bigreqsproto
platform/upstream/bison
platform/upstream/boost-jam
platform/upstream/bootchart
platform/upstream/build
platform/upstream/build-compare
platform/upstream/byacc
platform/upstream/cantarell-fonts
platform/upstream/ccache
platform/upstream/check
platform/upstream/chrpath
platform/upstream/cloog-isl
platform/upstream/cmake
platform/upstream/compositeproto
platform/upstream/corewatcher
platform/upstream/cpio
platform/upstream/crda
platform/upstream/createrepo
platform/upstream/cscope
platform/upstream/csr-framework
platform/upstream/ctags
platform/upstream/damageproto
platform/upstream/dash
platform/upstream/db-manager
platform/upstream/dejavu-fonts
platform/upstream/deltarpm
platform/upstream/diffutils
platform/upstream/dmxproto
platform/upstream/docbook-xsl
platform/upstream/docbook-xsl-stylesheets
platform/upstream/docbook_4
platform/upstream/dos2unix
platform/upstream/dosfstools
platform/upstream/doxygen
platform/upstream/dri2proto
platform/upstream/econnman
platform/upstream/ed
platform/upstream/efl
platform/upstream/eldbus
platform/upstream/emacs
platform/upstream/emulator-macros
platform/upstream/enchant
platform/upstream/expat
platform/upstream/expect
platform/upstream/fakeroot
platform/upstream/fdupes
platform/upstream/ffmpeg
platform/upstream/findutils
platform/upstream/fixesproto
platform/upstream/flac
platform/upstream/flex
platform/upstream/font-util
platform/upstream/fontcacheproto
platform/upstream/fontconfig
platform/upstream/fontsproto
platform/upstream/freeglut
platform/upstream/freetype2
platform/upstream/fribidi
platform/upstream/fsync
platform/upstream/gcc48
platform/upstream/gccmakedep
platform/upstream/gcr
platform/upstream/gdb
platform/upstream/gdk-pixbuf
platform/upstream/geoclue
platform/upstream/giflib
platform/upstream/git
platform/upstream/glib
platform/upstream/glproto
platform/upstream/gobject-introspection
platform/upstream/google-droid-fonts
platform/upstream/gperf
platform/upstream/grep
platform/upstream/groff
platform/upstream/gst-common
platform/upstream/gst-libav
platform/upstream/gst-omx
platform/upstream/gst-plugins-ugly
platform/upstream/gtest
platform/upstream/gtk-doc
platform/upstream/hardlink
platform/upstream/harfbuzz
platform/upstream/help2man
platform/upstream/hostname
platform/upstream/hunspell
platform/upstream/ibus
platform/upstream/icecream
platform/upstream/ima-evm-utils
platform/upstream/image-configurations
platform/upstream/imake
platform/upstream/inputproto
platform/upstream/intltool
platform/upstream/isl
platform/upstream/iso-codes
platform/upstream/iso_ent
platform/upstream/jasper
platform/upstream/json-c
platform/upstream/json-glib
platform/upstream/kbproto
platform/upstream/kickstarter
platform/upstream/lcms2
platform/upstream/less
platform/upstream/libGLU
platform/upstream/libXp
platform/upstream/libaio
platform/upstream/libasyncns
platform/upstream/libatasmart
platform/upstream/libav
platform/upstream/libbullet
platform/upstream/libdatrie
platform/upstream/libedit
platform/upstream/libelf0
platform/upstream/libevent
platform/upstream/libffi
platform/upstream/libflac
platform/upstream/libical
platform/upstream/libjpeg6
platform/upstream/libnl3
platform/upstream/libpcap
platform/upstream/libpipeline
platform/upstream/libremix
platform/upstream/libsecret
platform/upstream/libsmi
platform/upstream/libsolv
platform/upstream/libthai
platform/upstream/libtirpc
platform/upstream/libtool
platform/upstream/libunistring
platform/upstream/libwsbm
platform/upstream/libxml2
platform/upstream/libxslt
platform/upstream/libzio
platform/upstream/libzip
platform/upstream/libzypp-bindings
platform/upstream/lightmediascanner
platform/upstream/links
platform/upstream/linux-glibc-devel
platform/upstream/lksctp-tools
platform/upstream/llvm
platform/upstream/lsof
platform/upstream/ltrace
platform/upstream/lzo
platform/upstream/m4
platform/upstream/make
platform/upstream/makedepend
platform/upstream/man-db
platform/upstream/mesa
platform/upstream/meta-base
platform/upstream/meta-common
platform/upstream/meta-generic
platform/upstream/mic
platform/upstream/mkfontdir
platform/upstream/mkfontscale
platform/upstream/monotype-fonts
platform/upstream/mtdev
platform/upstream/mtools
platform/upstream/multipath-tools
platform/upstream/nano
platform/upstream/nasm
platform/upstream/neard
platform/upstream/neardal
platform/upstream/nodejs
platform/upstream/nss-mdns
platform/upstream/opengl-es-virtual-drv
platform/upstream/oprofile
platform/upstream/p11-kit
platform/upstream/package-groups
platform/upstream/pango
platform/upstream/patch
platform/upstream/patchelf
platform/upstream/pattern-tools
platform/upstream/pbzip2
platform/upstream/perl
platform/upstream/perl-Crypt-SSLeay
platform/upstream/perl-Devel-Symdump
platform/upstream/perl-Error
platform/upstream/perl-HTML-Parser
platform/upstream/perl-HTML-Tagset
platform/upstream/perl-Net-DBus
platform/upstream/perl-Pod-Coverage
platform/upstream/perl-Switch
platform/upstream/perl-Test-Pod
platform/upstream/perl-Test-Pod-Coverage
platform/upstream/perl-TimeDate
platform/upstream/perl-URI
platform/upstream/perl-WWW-Curl
platform/upstream/perl-X11-Protocol
platform/upstream/perl-XML-Parser
platform/upstream/perl-XML-Simple
platform/upstream/perl-XML-Twig
platform/upstream/perl-YAML
platform/upstream/perl-gettext
platform/upstream/perl-libwww-perl
platform/upstream/php
platform/upstream/pixman
platform/upstream/plymouth
platform/upstream/poppler-data
platform/upstream/prelink
platform/upstream/protobuf
platform/upstream/psb-headers
platform/upstream/pth
platform/upstream/pygobject2
platform/upstream/python
platform/upstream/python-Cheetah
platform/upstream/python-M2Crypto
platform/upstream/python-PyYAML
platform/upstream/python-ZSI
platform/upstream/python-cairo
platform/upstream/python-coverage
platform/upstream/python-distribute
platform/upstream/python-ecore
platform/upstream/python-edbus
platform/upstream/python-edje
platform/upstream/python-elementary
platform/upstream/python-evas
platform/upstream/python-gobject
platform/upstream/python-gpgme
platform/upstream/python-iniparse
platform/upstream/python-lxml
platform/upstream/python-markdown
platform/upstream/python-nose
platform/upstream/python-pyOpenSSL
platform/upstream/python-pycurl
platform/upstream/python-pygments
platform/upstream/python-setuptools
platform/upstream/python-sqlite
platform/upstream/python-urlgrabber
platform/upstream/python-yaml
platform/upstream/ragel
platform/upstream/randrproto
platform/upstream/raptor
platform/upstream/re2
platform/upstream/re2c
platform/upstream/readline
platform/upstream/renderproto
platform/upstream/rpmlint
platform/upstream/rpmlint-mini
platform/upstream/rpmlint-tizen
platform/upstream/rpmorphan
platform/upstream/ruby
platform/upstream/sbc
platform/upstream/scons
platform/upstream/screen
platform/upstream/scrnsaverproto
platform/upstream/sessreg
platform/upstream/setxkbmap
platform/upstream/sgml-common
platform/upstream/sgml-skel
platform/upstream/spec-cleaner
platform/upstream/squashfs
platform/upstream/sshfs
platform/upstream/strace
platform/upstream/sudo
platform/upstream/swig
platform/upstream/sysfsutils
platform/upstream/sysprof
platform/upstream/system-installer
platform/upstream/sysvinit
platform/upstream/tcl
platform/upstream/tcpdump
platform/upstream/tdb
platform/upstream/terminology
platform/upstream/texinfo
platform/upstream/tiff
platform/upstream/time
platform/upstream/tk
platform/upstream/tolua++
platform/upstream/tree
platform/upstream/udisks2
platform/upstream/unifdef
platform/upstream/update-alternatives
platform/upstream/update-desktop-files
platform/upstream/util-macros
platform/upstream/uw-imap-toolkit
platform/upstream/v4l-utils
platform/upstream/v8
platform/upstream/vala
platform/upstream/valgrind
platform/upstream/videoproto
platform/upstream/vim
platform/upstream/wdiff
platform/upstream/wireless-regdb
platform/upstream/x11proto-gesture
platform/upstream/x86info
platform/upstream/xauth
platform/upstream/xcb-util-keysyms
platform/upstream/xcmiscproto
platform/upstream/xconsole
platform/upstream/xdelta1
platform/upstream/xdg-user-dirs
platform/upstream/xdpyinfo
platform/upstream/xev
platform/upstream/xextproto
platform/upstream/xeyes
platform/upstream/xf86-input-evdev
platform/upstream/xf86-input-keyboard
platform/upstream/xf86-input-synaptics
platform/upstream/xf86-video-cirrus
platform/upstream/xf86-video-fbdev
platform/upstream/xf86-video-intel
platform/upstream/xf86-video-vesa
platform/upstream/xf86-video-vmware
platform/upstream/xf86bigfontproto
platform/upstream/xf86dgaproto
platform/upstream/xf86driproto
platform/upstream/xf86miscproto
platform/upstream/xf86vidmodeproto
platform/upstream/xhost
platform/upstream/xineramaproto
platform/upstream/xkbcomp
platform/upstream/xkbevd
platform/upstream/xkbprint
platform/upstream/xkbutils
platform/upstream/xkill
platform/upstream/xlsatoms
platform/upstream/xmlcharent
platform/upstream/xmlto
platform/upstream/xmodmap
platform/upstream/xorg-cf-files
platform/upstream/xprop
platform/upstream/xproto
platform/upstream/xrandr
platform/upstream/xrdb
platform/upstream/xrestop
platform/upstream/xset
platform/upstream/xsetroot
platform/upstream/xterm
platform/upstream/xvinfo
platform/upstream/xwd
platform/upstream/xwininfo
platform/upstream/xwud
platform/upstream/yaml
platform/upstream/yasm
platform/upstream/yum
platform/upstream/yum-metadata-parser
platform/upstream/zypper-plugin
pre-built/toolchain-arm
pre-built/toolchain-x86
profile/ivi/GSSDP
profile/ivi/automotive-message-broker
profile/ivi/cowhide
profile/ivi/dLeyna
profile/ivi/dlt-daemon
profile/ivi/efl-theme-tizen
profile/ivi/festival
profile/ivi/genivi/genivi-audio-manager
profile/ivi/gsignond
profile/ivi/gsignond-plugin-oauth
profile/ivi/ico-uxf-device-input-controller
profile/ivi/ico-uxf-homescreen
profile/ivi/ico-uxf-homescreen-sample-apps
profile/ivi/ico-uxf-pulse-plugin
profile/ivi/ico-uxf-utilities
profile/ivi/ico-uxf-weston-plugin
profile/ivi/ico-vic-amb-plugin
profile/ivi/ico-vic-carsimulator
profile/ivi/image-configurations
profile/ivi/kernel-x86-ivi
profile/ivi/lemolo
profile/ivi/libgee
profile/ivi/libgsignon-glib
profile/ivi/libwebsockets
profile/ivi/meta-ivi
profile/ivi/meta-panda
profile/ivi/murphy
profile/ivi/notification-service
profile/ivi/package-groups
profile/ivi/pocketsphinx
profile/ivi/psplash
profile/ivi/pulseaudio-module-murphy-ivi
profile/ivi/release-repos
profile/ivi/rygel
profile/ivi/saythis
profile/ivi/sdk/web-ide-resources
profile/ivi/sdk/web-sample-build
profile/ivi/settings-daemon
profile/ivi/setup-efi-ivi
profile/ivi/setup-ivi
profile/ivi/setup-mbr-ivi
profile/ivi/signonui-efl
profile/ivi/smartdevicelink
profile/ivi/weekeyboard
profile/ivi/wrt-plugins-ivi
profile/mobile/alsa-scenario-scn-data-0-mfld
profile/mobile/device-config-touch
profile/mobile/ecore
profile/mobile/edbus
profile/mobile/edje
profile/mobile/eet
profile/mobile/eeze
profile/mobile/efreet
profile/mobile/eina
profile/mobile/eio
profile/mobile/elementary
profile/mobile/embryo
profile/mobile/emotion
profile/mobile/ethumb
profile/mobile/evas
profile/mobile/expedite
profile/mobile/gst-openmax0.10
profile/mobile/gst-plugins-bad0.10
profile/mobile/gst-plugins-base0.10
profile/mobile/gst-plugins-ext0.10
profile/mobile/gst-plugins-good0.10
profile/mobile/gst-plugins-ugly0.10
profile/mobile/gstreamer-vaapi
profile/mobile/gstreamer0.10
profile/mobile/gstreamer0.10-ffmpeg
profile/mobile/image-configurations
profile/mobile/libmm-player
profile/mobile/libva
profile/mobile/meta-mobile
profile/mobile/package-groups
profile/mobile/sdk/native-ide-resources
profile/mobile/sdk/native-sample-build
profile/mobile/sdk/native-template
profile/mobile/sdk/platform-sample-build
profile/mobile/sdk/platform-template
profile/mobile/sdk/web-ide-resources
profile/mobile/sdk/web-sample-build
profile/mobile/sdk/web-template
profile/mobile/tizen-mobile-session
profile/mobile/x2w
profile/mobile/xorg-x11-drv-evdev-multitouch
samples/web/TizenWinset
sdk/alsa-scenario-scn-data-0-emul
sdk/build/meta-emulator-tools
sdk/build/meta-sdk-dev-tools
sdk/build/meta-tizen-components
sdk/build/meta-tizen-documents
sdk/build/meta-tizen-ide
sdk/build/meta-tizen-installtype
sdk/device-manager-plugin-emul
sdk/doc/doc-tools
sdk/emulator-daemon
sdk/emulator-plugin-accel
sdk/emulator-plugin-accel-filter
sdk/emulator-plugin-accel-proc
sdk/emulator-plugin-geo
sdk/emulator-plugin-geo-filter
sdk/emulator-plugin-geo-proc
sdk/emulator-plugin-gyro-pkgs
sdk/emulator-plugin-light
sdk/emulator-plugin-light-filter
sdk/emulator-plugin-light-proc
sdk/emulator-plugin-motion-proc
sdk/emulator-plugin-proxi
sdk/emulator-plugin-proxi-filter
sdk/emulator-plugin-proxi-proc
sdk/emulator/emulator-control-panel
sdk/emulator/emulator-img
sdk/emulator/emulator-kernel
sdk/emulator/event-injector
sdk/emulator/qemu
sdk/emulator/vgabios
sdk/gst-plugins-emulator
sdk/gstreamer0.10-ffmpeg-emulator
sdk/ide/dynamic-analysis-ide-eplugin
sdk/ide/eventinjector-eplugin
sdk/ide/jsdt-extension-eplugin
sdk/ide/native-sample
sdk/ide/nativeappcommon-eplugin
sdk/ide/nativecommon-eplugin
sdk/ide/nativeplatform-eplugin
sdk/ide/product
sdk/ide/web-ui-builder-eplugin
sdk/ide/web-ui-builder-test
sdk/ide/webapp-eplugin
sdk/sensor-daemon-emulator
sdk/target/dynamic-analysis-manager
sdk/target/dynamic-analysis-probe
sdk/target/sdbd
sdk/tools/cli
sdk/tools/dynamic-analyzer
sdk/tools/gcc-4.5
sdk/tools/gdb-7.5
sdk/tools/mingw
sdk/tools/native-app-rootstrap
sdk/tools/platform-dev-rootstrap
sdk/tools/sbi-plugins
sdk/tools/sdk-build
sdk/tools/toolchain-dev-rootstrap
sdk/tools/unittest-framework
sdk/tools/upstream/oprofile
sdk/tools/upstream/valgrind
sdk/tools/web-app-checker
sdk/vmodem-daemon-emulator
tools/lthor
tools/mic-bootstrap
_______________________________________________
Dev mailing list
[email protected]
https://lists.tizen.org/listinfo/dev

Reply via email to