Remove backup files and add to .gitignore
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Fri, 15 Feb 2013 07:53:03 +0000 (07:53 +0000)
committerPaul Eggleton <paul.eggleton@linux.intel.com>
Fri, 15 Feb 2013 10:24:28 +0000 (10:24 +0000)
37 files changed:
meta-tizen/.gitignore [new file with mode: 0644]
meta-tizen/classes/specParserUtils.bbclass~ [deleted file]
meta-tizen/conf/distro/include/tclibc-glibc.inc~ [deleted file]
meta-tizen/conf/distro/include/tizen-distrovars.inc~ [deleted file]
meta-tizen/conf/distro/tizen.conf~ [deleted file]
meta-tizen/conf/layer.conf~ [deleted file]
meta-tizen/recipes-BaseSystem/create-package-initial/list_packages~ [deleted file]
meta-tizen/recipes-BaseSystem/e2fsprogs/e2fsprogs-extraconf.inc~ [deleted file]
meta-tizen/recipes-BaseSystem/glibc/glib-extraconf.inc~ [deleted file]
meta-tizen/recipes-BaseSystem/glibc/glibc-extraconf.inc~ [deleted file]
meta-tizen/recipes-BaseSystem/glibc/glibc.inc~ [deleted file]
meta-tizen/recipes-BaseSystem/glibc/glibc_git.bb~ [deleted file]
meta-tizen/recipes-BaseSystem/kmod/kmod.inc~ [deleted file]
meta-tizen/recipes-BaseSystem/libcap-ng/libcap-ng.inc~ [deleted file]
meta-tizen/recipes-BaseSystem/packagegroups/packagegroup-tizen-core-boot.bb~ [deleted file]
meta-tizen/recipes-BaseSystem/rpm/rpm.inc~ [deleted file]
meta-tizen/recipes-BaseSystem/systemd/systemd-extraconf.inc~ [deleted file]
meta-tizen/recipes-BaseSystem/systemd/systemd.inc~ [deleted file]
meta-tizen/recipes-BaseSystem/tizenBuildUtils/tizenBuildUtils.inc~ [deleted file]
meta-tizen/recipes-BaseSystem/util-linux/util-linux-extraconf.inc~ [deleted file]
meta-tizen/recipes-Development/flex/flex.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/bc/bc.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/bzip2/bzip2-extraconf.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/expat/expat.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/fdupes/fdupes-extraconf.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/gcc47/gcc47-extraconf.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/gettext/gettext-extraconf.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/gettext/gettext.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/libzio/libzio-extraconf.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/linux-glibc-devel/linux-glibc-devel-extraconf.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/linux-glibc-devel/linux-glibc-devel.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/ncurses/ncurses-extraconf.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/ncurses/ncurses.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/smack/smack-extraconf.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/texinfo/texinfo-extraconf.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/texinfo/texinfo.inc~ [deleted file]
meta-tizen/recipes-DevelopmentExtra/texinfo/texinfo_git.bb~ [deleted file]

diff --git a/meta-tizen/.gitignore b/meta-tizen/.gitignore
new file mode 100644 (file)
index 0000000..b25c15b
--- /dev/null
@@ -0,0 +1 @@
+*~
diff --git a/meta-tizen/classes/specParserUtils.bbclass~ b/meta-tizen/classes/specParserUtils.bbclass~
deleted file mode 100644 (file)
index 3913131..0000000
+++ /dev/null
@@ -1,349 +0,0 @@
-#!/usr/bin/python
-
-#
-# Copyright 2013, Intel Inc.
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation; version 2 of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU Library General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
-#
-#'''
-#Created on  05 fevr. 2013
-#
-#@author: ronan@fridu.net
-#'''
-
-#import sys
-#import os
-
-#import subprocess
-#import shlex
-
-#import re
-
-def oe_import(e):
-       import sys
-       import os
-
-       import subprocess
-       import shlex
-
-       import re
-
-       __introduction_section = "introduction_section"
-       __package = "%package"
-       __description = "%description"
-       __prepFlag = "%prep"
-       __buildFlag = "%build"
-       __installFlag = "%install"
-       __cleanFlag = "%clean"
-       __filesFlag = "%files"
-       __checkFlag = "%check"
-       __postFlag = "%post"
-       __preunFlag = "%preun"
-       __postunFlag = "%postun"
-       __verifyscriptFlag = "%verifyscript"
-       __listSection = [__package,
-                                        __description,
-                                        __prepFlag,
-                                        __buildFlag,
-                                        __installFlag,
-                                        __cleanFlag,
-                                        __filesFlag,
-                                        __checkFlag,
-                                        __postFlag,
-                                        __preunFlag,
-                                        __postunFlag,
-                                        __verifyscriptFlag]
-
-addhandler oe_import
-
-
-
-
-def parseParsedSpecFile(parsedSpecFile):
-       def testSection(line):
-               for sect in __listSection:
-                       if line.startswith(sect):
-                               return True
-               return False
-       #ordered dico is not provide yet...
-       orderList = []
-       spectDico = {}
-
-       currentSection = __introduction_section
-       spectDico[currentSection] = []
-       orderList.append(currentSection)
-
-       for line in parsedSpecFile.split("\n"):
-               if testSection(line) :
-                       if line in spectDico.keys():
-                               raise "ERROR this section \"%s\" is not unique." % line
-                       currentSection = line
-                       spectDico[currentSection] = []
-                       orderList.append(currentSection)
-               
-               spectDico[currentSection].append(line)
-
-       return spectDico,orderList
-
-def listPackage(specfile_dir="specfile-initial",package_config="package-config-initial"):
-       res=[]
-       
-       with open(package_config,"r") as f:
-               for line in f:
-                       package_name,package_git_command, package_spec_initial= line.split()
-       
-                       package_spec_path=os.path.join(specfile_dir,package_spec_initial)
-                       if os.path.isfile(package_spec_path):
-                               res.append((package_name,package_git_command,package_spec_path))
-       return res
-
-def findPatch(package_spec_path):
-       patternPatch = r'(Patch.*):'
-       res=[]
-       with open(package_spec_path) as f:
-               specFile=f.read()
-               
-               resTMP =re.findall(patternPatch, specFile)
-               for r in resTMP:
-                       res.append(r.replace("Patch","patch"))
-                               
-       return res
-       
-       
-def convertSpecFile(package_name,package_git_command,package_spec_path,cpu="x86_64"):
-       command="rpmspec  --parse %s" % package_spec_path
-       command += " --define='setup #setup'"
-       command += " --define='buildroot ${D}'"
-       command += " --define='_target_cpu %s'" % cpu
-       
-       patchs=findPatch(package_spec_path)
-       
-       for p in patchs:
-               command += " --define='%s #%s'" % (p,p)
-       
-       splittedCommand=shlex.split(command)
-       p = subprocess.Popen(splittedCommand,
-                            stdout=subprocess.PIPE,
-                            stderr=subprocess.PIPE)
-       res = p.poll()
-       parsedSpecFile= p.stdout.read()
-       
-       return parsedSpecFile
-
-def getName(lines):
-       patternDescription = r'^Name:\s*(.*)'
-       for line in lines:
-               description= re.findall(patternDescription, line)
-               if len(description)>0:
-                       return description[0]
-       return ""
-
-def getDescription(lines):
-       patternDescription = r'^Summary:\s*(.*)'
-       for line in lines:
-               description= re.findall(patternDescription, line)
-               if len(description)>0:
-                       return description[0]
-       return ""
-       
-def getHomepage(lines):
-       patternDescription = r'^Url:\s*(.*)'
-       for line in lines:
-               description= re.findall(patternDescription, line)
-               if len(description)>0:
-                       return description[0]
-       return ""
-
-def getSection(lines):
-       patternDescription = r'^Group:\s*(.*)'
-       for line in lines:
-               description= re.findall(patternDescription, line)
-               if len(description)>0:
-                       return description[0]
-       return ""
-
-def getPriority(lines):
-       return ""
-
-def getLicense(lines):
-       patternDescription = r'^License:\s*(.*)'
-       for line in lines:
-               description= re.findall(patternDescription, line)
-               if len(description)>0:
-                       return description[0]
-       return ""
-       
-def getProvides(spectDico):
-       __package = "%package"
-       res=[]
-       baseName=getName( spectDico[__introduction_section] )
-       res.append( baseName )
-       
-       patternPackage = r'^%package\s*(.*)'
-       
-       for k in spectDico.keys():
-               package= re.findall(patternPackage, k)
-               if len(package)>0:
-                       if "-n" in package[0]:
-                               packageName=package[0].replace("-n","").replace(" ","")
-                       else:
-                               packageName=baseName+"-"+package[0]
-                       
-                       res.append( packageName )
-       return res
-
-def getBuildRequires(lines):
-       res=[]
-       buildRequiresPackage = r'^BuildRequires:\s*(.*)'
-       buildPkgconfig = r'pkgconfig\((.*)\).*'
-        
-       for line in lines:
-               buildRequires= re.findall(buildRequiresPackage, line)
-               for r in buildRequires:
-                       tmp=r
-                       buildRequires= re.findall(buildPkgconfig, r)
-                       
-                       if len(buildRequires)>0:
-                               tmp=buildRequires[0]
-                       elif ">" in r:
-                               tmp=r.split(">")[0]
-                       elif "<" in r:
-                               tmp=r.split("<")[0]
-                       res.append(tmp)
-               
-       return res
-
-def getRProvides(spectDico):
-       res=[]
-       
-       return res
-
-def getDepends(spectDico):
-       res=[]
-       
-       patternPackage = r'^%package\s*(.*)'
-       
-       for k in spectDico.keys():
-               package= re.findall(patternPackage, k)
-               if len(package)>0 or (k == __introduction_section):
-                       res.extend( getBuildRequires(spectDico[k]) )
-
-       return res
-
-def getRDepends(spectDico):
-       res=[]
-       
-       return res
-
-
-
-def createRecipes(package_name,package_git_command,spectDico,orderList,recipesDir="/home/ronanguirec/Documents/yocto/openembedded-core-gen-tizen/meta-tizen/recipes-BaseSystem"):
-       packageRecipesDir=os.path.join(recipesDir,package_name)
-       if not os.path.isdir(packageRecipesDir):
-               os.mkdir(packageRecipesDir)
-               
-       DESCRIPTION = getDescription( spectDico[__introduction_section] )
-       HOMEPAGE = getHomepage( spectDico[__introduction_section] )
-       SECTION = getSection( spectDico[__introduction_section] )
-       PRIORITY = getPriority( spectDico[__introduction_section] )
-       LICENSE = getLicense( spectDico[__introduction_section] )
-
-       providesList=getProvides(spectDico)
-       rprovidesList=getProvides(spectDico)
-       
-       dependsList=getDepends(spectDico)
-       rdependsList=getRDepends(spectDico)
-       
-       baseFile=package_name+".inc"
-       gitFile=package_name+"_git.bb"
-       
-       with open(os.path.join(packageRecipesDir,baseFile),"w" ) as f:
-               f.write("DESCRIPTION = \"%s\"\n" % DESCRIPTION)
-               f.write("HOMEPAGE = \"%s\"\n" % HOMEPAGE)
-               f.write("SECTION = \"%s\"\n" % SECTION)
-               f.write("PRIORITY = \"%s\"\n" % PRIORITY)
-               f.write("LICENSE = \"%s\"\n" % LICENSE)
-               f.write("\n" )
-               
-               f.write("PACKAGES = \"\"\n" )
-               for p in providesList:
-                       f.write("PACKAGES += \"%s\"\n" % p)
-               f.write("\n" )
-               
-               #f.write("RPROVIDES = \"\"\n" )
-               #for p in rprovidesList:
-               #       f.write("RPROVIDES += \"%s\"\n" % p)
-               #f.write("\n" )
-               
-               f.write("DEPENDS = \"\"\n" )
-               for p in dependsList:
-                       f.write("DEPENDS += \"%s\"\n" % p)
-               f.write("\n" )
-               
-               f.write("RDEPENDS = \"\"\n" )
-               for p in rdependsList:
-                       f.write("RDEPENDS += \"%s\"\n" % p)
-               f.write("\n" )
-               
-               f.write("S = \"${WORKDIR}/git\"\n")
-               
-       with open(os.path.join(packageRecipesDir,gitFile),"w" ) as f:
-               f.write("require %s\n" % baseFile)
-               f.write("\n" )
-               f.write("SRC_URI = %s\n" % package_git_command)
-               
-
-def createPackages():
-       res=listPackage()
-       for package_name,package_git_command,package_spec_path in res:
-               parsedSpecFile=convertSpecFile(package_name,package_git_command,package_spec_path)
-               spectDico,orderList=parseParsedSpecFile(parsedSpecFile)
-               
-               res=createRecipes(package_name,package_git_command,spectDico,orderList)
-                       
-#              return 0
-       
-def getCompile(d):
-  print "RLM DO getCompile."
-
-
-       #if __name__ == '__main__':
-       #res=createPackages()
-       #sys.exit(res)
-       
-       #parsedSpecFile= convertSpecFile("connman","","specfile-initial/connman.spec")
-       #spectDico,orderList=parseParsedSpecFile(parsedSpecFile)
-       #print spectDico
-       #       
-       #for k in orderList:
-       #       print
-       #       print "section: ",k
-       #       print "getName( spectDico[__introduction_section] )",getName( spectDico[__introduction_section] )
-       #       print
-       #       for line in spectDico[k]:
-       #               print line
-
-       
-       
-       
-       
-       
-       
-       
-       
-       
-       
-       
-       
-       
diff --git a/meta-tizen/conf/distro/include/tclibc-glibc.inc~ b/meta-tizen/conf/distro/include/tclibc-glibc.inc~
deleted file mode 100644 (file)
index 2ce709f..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-#
-# glibc specific configuration
-#
-PREFERRED_PROVIDER_gcc-c++ += "gcc"
-
-LIBCEXTENSION = "${@['', '-gnu'][(d.getVar('ABIEXTENSION', True) or '') != '']}"
-
-# Add glibc overrides to the overrides for glibc.
-LIBCOVERRIDE = ":libc-glibc"
-OVERRIDES .= "${LIBCOVERRIDE}"
-
-
-PREFERRED_PROVIDER_linux-libc-headers = "linux-libc-headers"
-
-PREFERRED_PROVIDER_virtual/libiconv ?= "glibc"
-PREFERRED_PROVIDER_virtual/nativesdk-libiconv ?= "nativesdk-glibc"
-PREFERRED_PROVIDER_virtual/nativesdk-libintl ?= "nativesdk-gettext"
-PREFERRED_PROVIDER_virtual/libintl ?= "glibc"
-PREFERRED_PROVIDER_virtual/libc = "glibc"
-PREFERRED_PROVIDER_virtual/nativesdk-libc ?= "nativesdk-glibc"
-PREFERRED_PROVIDER_virtual/libc-locale ?= "glibc-locale"
-
-CXXFLAGS += "-fvisibility-inlines-hidden"
-
-LIBC_DEPENDENCIES = "libsegfault \
-                    glibc \
-                    glibc-dbg \
-                    glibc-dev \
-                    glibc-utils \
-                    glibc-thread-db \
-                    ${@get_libc_locales_dependencies(d)}"
-
-LIBC_LOCALE_DEPENDENCIES = "\
-       glibc-localedata-i18n \
-       glibc-gconv-ibm850 \
-       glibc-gconv-cp1252 \
-       glibc-gconv-iso8859-1 \
-       glibc-gconv-iso8859-15"
-
-def get_libc_locales_dependencies(d):
-    if 'libc-locales' in (d.getVar('DISTRO_FEATURES', True) or '').split() :
-        return d.getVar('LIBC_LOCALE_DEPENDENCIES', True) or ''
-    else:
-        return ''
diff --git a/meta-tizen/conf/distro/include/tizen-distrovars.inc~ b/meta-tizen/conf/distro/include/tizen-distrovars.inc~
deleted file mode 100644 (file)
index e6a04d1..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-QA_LOGFILE = "${TMPDIR}/qa.log"
-
-OEINCLUDELOGS ?= "yes"
-KERNEL_CONSOLE ?= "ttyS0"
-KEEPUIMAGE ??= "yes"
-
-PCMCIA_MANAGER ?= "pcmciautils"
-
-IMAGE_LINGUAS ?= "en-us en-gb"
-LIMIT_BUILT_LOCALES ?= "POSIX en_US en_GB"
-ENABLE_BINARY_LOCALE_GENERATION ?= "1"
-LOCALE_UTF8_ONLY ?= "0"
-
-DISTRO_FEATURES_LIBC_DEFAULT ?= "ipv4 ipv6 libc-backtrace libc-big-macros libc-bsd libc-cxx-tests libc-catgets libc-charsets libc-crypt \
-                                       libc-crypt-ufc libc-db-aliases libc-envz libc-fcvt libc-fmtmsg libc-fstab libc-ftraverse \
-                                       libc-getlogin libc-idn libc-inet-anl libc-libm libc-libm-big libc-locales libc-locale-code \
-                                       libc-memusage libc-nis libc-nsswitch libc-rcmd libc-rtld-debug libc-spawn libc-streams libc-sunrpc \
-                                       libc-utmp libc-utmpx libc-wordexp libc-posix-clang-wchar libc-posix-regexp libc-posix-regexp-glibc \
-                                       libc-posix-wchar-io"
-DISTRO_FEATURES_LIBC ?= "${DISTRO_FEATURES_LIBC_DEFAULT}"
-DISTRO_FEATURES_LIBC_class-nativesdk = "${DISTRO_FEATURES_LIBC_DEFAULT}"
-DISTRO_FEATURES ?= "alsa argp bluetooth ext2 irda largefile pcmcia usbgadget usbhost wifi xattr nfs zeroconf pci 3g x11 ${DISTRO_FEATURES_LIBC}"
-
-IMAGE_FEATURES ?= ""
-
-# This is a list of packages that are used by the build system to build the distribution, they are not
-# directly part of the distribution. 
-HOSTTOOLS_WHITELIST_GPLv3 ?= ""
-WHITELIST_GPLv3 ?= "less"
-LGPLv2_WHITELIST_GPLv3 ?= "libassuan gnutls libtasn1 libidn libgcc gcc-runtime" 
-
-COMMERCIAL_AUDIO_PLUGINS ?= ""
-# COMMERCIAL_AUDIO_PLUGINS ?= "gst-plugins-ugly-mad gst-plugins-ugly-mpegaudioparse"
-COMMERCIAL_VIDEO_PLUGINS ?= ""
-# COMMERCIAL_VIDEO_PLUGINS ?= "gst-plugins-ugly-mpeg2dec gst-plugins-ugly-mpegstream gst-plugins-bad-mpegvideoparse"
-COMMERCIAL_QT ?= ""
-# COMMERCIAL_QT ?= "qmmp"
-# Set of common licenses used for license.bbclass
-COMMON_LICENSE_DIR ??= "${COREBASE}/meta/files/common-licenses"
-
-BB_GENERATE_MIRROR_TARBALLS ??= "0"
-
-NO32LIBS ??= "1"
-
-# Default to emitting logfiles if a build fails.
-BBINCLUDELOGS ??= "yes"
-SDK_VERSION ??= "oe-core.0"
-DISTRO_VERSION ??= "oe-core.0"
-
-# Missing checksums should raise an error
-BB_STRICT_CHECKSUM = "1"
-
-ASSUME_PROVIDED += "help2man-native makeinfo-native"
-
diff --git a/meta-tizen/conf/distro/tizen.conf~ b/meta-tizen/conf/distro/tizen.conf~
deleted file mode 100644 (file)
index e0ddf56..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-include conf/distro/include/tizen-distrovars.inc
-
-
-
-
-TCMODE = "tizen"
-require conf/distro/include/tcmode-${TCMODE}.inc
-
-TCLIBC = "glibc"
-require conf/distro/include/tclibc-${TCLIBC}.inc
-
-# Allow single libc distros to disable this code
-TCLIBCAPPEND = "-${TCLIBC}"
-
-
-
-
-USER_CLASSES ?= ""
-PACKAGE_CLASSES = "package_rpm"
-
-
-
-
-CSL_VER_MAIN  = "2013.01-01"
diff --git a/meta-tizen/conf/layer.conf~ b/meta-tizen/conf/layer.conf~
deleted file mode 100644 (file)
index fd5f363..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-# We have a conf and classes directory, add to BBPATH
-BBPATH := "${BBPATH}:${LAYERDIR}"
-
-# We have a packages directory, add to BBFILES
-BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \
-            ${LAYERDIR}/recipes-*/*/*.bbappend"
-
-BBFILE_COLLECTIONS += "tizen"
-BBFILE_PATTERN_tizen := "^${LAYERDIR}/"
-BBFILE_PRIORITY_tizen = "1"
diff --git a/meta-tizen/recipes-BaseSystem/create-package-initial/list_packages~ b/meta-tizen/recipes-BaseSystem/create-package-initial/list_packages~
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/meta-tizen/recipes-BaseSystem/e2fsprogs/e2fsprogs-extraconf.inc~ b/meta-tizen/recipes-BaseSystem/e2fsprogs/e2fsprogs-extraconf.inc~
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/meta-tizen/recipes-BaseSystem/glibc/glib-extraconf.inc~ b/meta-tizen/recipes-BaseSystem/glibc/glib-extraconf.inc~
deleted file mode 100644 (file)
index a82f365..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-inherit insane
-inherit package
-#inherit autotools
-inherit libc-common
-
-DEPENDS += "linux-libc-headers"
-DEPENDS += "virtual/${TARGET_PREFIX}gcc-initial"
-
-STAGINGCC = "gcc-cross-initial"
-PATH_prepend = "${STAGING_BINDIR_TOOLCHAIN}.${STAGINGCC}:"
-
-
-DEPENDS += "linux-libc-headers"
-
-RDEPENDS_${PN}-dev = "linux-libc-headers-dev"
-
-base_libdir = "/lib64"
diff --git a/meta-tizen/recipes-BaseSystem/glibc/glibc-extraconf.inc~ b/meta-tizen/recipes-BaseSystem/glibc/glibc-extraconf.inc~
deleted file mode 100644 (file)
index eac348f..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-inherit insane
-inherit package
-#inherit autotools
-inherit libc-common
-
-DEPENDS += "linux-libc-headers"
-DEPENDS += "virtual/${TARGET_PREFIX}gcc-initial"
-
-STAGINGCC = "gcc-cross-initial"
-PATH_prepend = "${STAGING_BINDIR_TOOLCHAIN}.${STAGINGCC}:"
-
-
-DEPENDS += "linux-libc-headers"
-
-RDEPENDS_${PN}-dev = "linux-libc-headers-dev"
-
-base_libdir = "/lib64"
-
-
-# to test
-PROVIDES += "virtual/libc virtual/${TARGET_PREFIX}libc-for-gcc"
-PROVIDES += "virtual/libintl virtual/libiconv"
-
-LIC_FILES_CHKSUM = "file://COPYING;md5=393a5ca445f6965873eca0259a17f833"
-
-INHIBIT_DEFAULT_DEPS = "1"
-
-# default to disabled until qemu works for everyone
-ENABLE_BINARY_LOCALE_GENERATION ?= "0"
-ENABLE_BINARY_LOCALE_GENERATION_pn-glibc-nativesdk = "0"
-
-PKGSUFFIX = ""
-PKGSUFFIX_virtclass-nativesdk = "-nativesdk"
-
-BBCLASSEXTEND =+ "nativesdk"
-
-RPROVIDES += "libsegfault"
-RPROVIDES += "glibc-dbg"
-RPROVIDES += "glibc-dev"
-RPROVIDES += 'glibc-thread-db'
-RPROVIDES += 'glibc-localedata-i18n'
-RPROVIDES += 'glibc-gconv-ibm850'
-RPROVIDES += 'glibc-gconv-cp1252'
-RPROVIDES += 'glibc-gconv-iso8859-1'
-RPROVIDES += 'glibc-gconv-iso8859-15'
diff --git a/meta-tizen/recipes-BaseSystem/glibc/glibc.inc~ b/meta-tizen/recipes-BaseSystem/glibc/glibc.inc~
deleted file mode 100644 (file)
index 958a2a9..0000000
+++ /dev/null
@@ -1,163 +0,0 @@
-DESCRIPTION = "Standard Shared Libraries (from the GNU C Library)"
-HOMEPAGE = "http://www.gnu.org/software/libc/libc.html"
-SECTION = "System/Libraries"
-PRIORITY = ""
-LICENSE = "LGPL-2.1+ and SUSE-LGPL-2.1+-with-GCC-exception and GPL-2.0+"
-
-PROVIDES = ""
-#PROVIDES by glibc-devel 
-PROVIDES += "glibc-devel"
-RPROVIDES_glibc-devel += "glibc-devel"
-
-#PROVIDES by glibc-locale 
-PROVIDES += "glibc-locale"
-RPROVIDES_glibc-locale += "glibc-locale"
-
-#PROVIDES by glibc-utils 
-PROVIDES += "glibc-utils"
-RPROVIDES_glibc-utils += "glibc-utils"
-
-#PROVIDES by glibc-devel-static 
-PROVIDES += "glibc-devel-static"
-RPROVIDES_glibc-devel-static += "glibc-devel-static"
-# the PROVIDES rules is ignore "glibc-static = 2.17"
-PROVIDES += "glibc-static"
-RPROVIDES_glibc-devel-static += "glibc-static"
-
-#PROVIDES by glibc-extra 
-PROVIDES += "glibc-extra"
-RPROVIDES_glibc-extra += "glibc-extra"
-
-#PROVIDES by glibc 
-PROVIDES += "glibc"
-RPROVIDES_glibc += "glibc"
-PROVIDES += "rtld(GNU_HASH)"
-RPROVIDES_glibc += "rtld(GNU_HASH)"
-
-#PROVIDES by glibc-obsolete 
-PROVIDES += "glibc-obsolete"
-RPROVIDES_glibc-obsolete += "glibc-obsolete"
-
-#PROVIDES by glibc-info 
-PROVIDES += "glibc-info"
-RPROVIDES_glibc-info += "glibc-info"
-
-#PROVIDES by nscd 
-PROVIDES += "nscd"
-RPROVIDES_nscd += "nscd"
-PROVIDES += "glibc:/usr/sbin/nscd"
-RPROVIDES_nscd += "glibc:/usr/sbin/nscd"
-
-#PROVIDES by glibc-i18ndata 
-PROVIDES += "glibc-i18ndata"
-RPROVIDES_glibc-i18ndata += "glibc-i18ndata"
-
-#PROVIDES by glibc-html 
-PROVIDES += "glibc-html"
-RPROVIDES_glibc-html += "glibc-html"
-
-#PROVIDES by glibc-profile 
-PROVIDES += "glibc-profile"
-RPROVIDES_glibc-profile += "glibc-profile"
-
-
-DEPENDS = ""
-#DEPENDS of glibc 
-DEPENDS += "fdupes-native"
-DEPENDS += "makeinfo-native"
-DEPENDS += "xz-native"
-DEPENDS += "gcc-cross"
-DEPENDS += "gettext-tools-native"
-DEPENDS += "libstdc++"
-
-
-
-RDEPENDS = ""
-#RDEPENDS of glibc-devel 
-# the RDEPENDS rules is ignore "glibc = 2.17"
-RDEPENDS_glibc-devel += "glibc"
-RDEPENDS_glibc-devel += "linux-kernel-headers"
-
-#RDEPENDS of glibc-locale 
-# the RDEPENDS rules is ignore "glibc = 2.17"
-RDEPENDS_glibc-locale += "glibc"
-
-#RDEPENDS of glibc-utils 
-# the RDEPENDS rules is ignore "glibc = 2.17"
-RDEPENDS_glibc-utils += "glibc"
-
-#RDEPENDS of glibc-devel-static 
-# the RDEPENDS rules is ignore "glibc-devel = 2.17"
-RDEPENDS_glibc-devel-static += "glibc-devel"
-
-#RDEPENDS of glibc-extra 
-# the RDEPENDS rules is ignore "glibc = 2.17"
-RDEPENDS_glibc-extra += "glibc"
-
-#RDEPENDS of glibc-profile 
-# the RDEPENDS rules is ignore "glibc = 2.17"
-RDEPENDS_glibc-profile += "glibc"
-
-#RDEPENDS of glibc-obsolete 
-# the RDEPENDS rules is ignore "glibc = 2.17"
-RDEPENDS_glibc-obsolete += "glibc"
-
-#RDEPENDS of nscd 
-# the RDEPENDS rules is ignore "glibc = 2.17"
-RDEPENDS_nscd += "glibc"
-
-
-PACKAGES = ""
-PACKAGES += "glibc-devel"
-PACKAGES += "glibc-locale"
-PACKAGES += "glibc-utils"
-PACKAGES += "glibc-"
-PACKAGES += "glibc-devel-static"
-PACKAGES += "glibc-extra"
-PACKAGES += "glibc-profile"
-PACKAGES += "glibc-info"
-PACKAGES += "nscd"
-PACKAGES += "glibc-i18ndata"
-PACKAGES += "glibc-html"
-
-glibc-develfiles = "/usr/bin/catchsegv /usr/bin/rpcgen /usr/bin/sprof /usr/include/* /usr/lib64/*.o /usr/lib64/*.so /usr/lib64/libbsd-compat.a /usr/lib64/libc_nonshared.a /usr/lib64/libg.a /usr/lib64/libieee.a /usr/lib64/libmcheck.a /usr/lib64/libpthread_nonshared.a /usr/lib64/librpcsvc.a "
-
-glibc-localefiles = "/usr/share/locale/locale.alias /usr/lib/locale/* /usr/lib64/gconv "
-
-glibc-utilsfiles = "/lib64/libmemusage.so /lib64/libpcprofile.so //usr/lib64/audit/sotruss-lib.so /usr/bin/mtrace /usr/bin/pcprofiledump /usr/bin/sotruss /usr/bin/xtrace /usr/bin/pldd "
-
-glibc-files = " /lib64/ld-2.17.so  /lib64/ld-linux-x86-64.so.2  /lib64/libBrokenLocale-2.17.so /lib64/libBrokenLocale.so.1 /lib64/libSegFault.so /lib64/libanl-2.17.so /lib64/libanl.so.1 /lib64/libc-2.17.so /lib64/libc.so.6* /lib64/libcidn-2.17.so /lib64/libcidn.so.1 /lib64/libcrypt-2.17.so /lib64/libcrypt.so.1 /lib64/libdl-2.17.so /lib64/libdl.so.2* /lib64/libm-2.17.so /lib64/libm.so.6* /lib64/libnsl-2.17.so /lib64/libnsl.so.1 /lib64/libnss_compat-2.17.so /lib64/libnss_compat.so.2 /lib64/libnss_db-2.17.so /lib64/libnss_db.so.2 /lib64/libnss_dns-2.17.so /lib64/libnss_dns.so.2 /lib64/libnss_files-2.17.so /lib64/libnss_files.so.2 /lib64/libnss_hesiod-2.17.so /lib64/libnss_hesiod.so.2 /lib64/libnss_nis-2.17.so /lib64/libnss_nis.so.2 /lib64/libnss_nisplus-2.17.so /lib64/libnss_nisplus.so.2 /lib64/libpthread-2.17.so /lib64/libpthread.so.0 /lib64/libresolv-2.17.so /lib64/libresolv.so.2 /lib64/librt-2.17.so /lib64/librt.so.1 /lib64/libthread_db-1.0.so /lib64/libthread_db.so.1 /lib64/libutil-2.17.so /lib64/libutil.so.1  /sbin/ldconfig /usr/bin/gencat /usr/bin/getconf /usr/bin/getent /usr/bin/iconv /usr/bin/locale /usr/bin/localedef /usr/lib/getconf/* /usr/sbin/glibc_post_upgrade /usr/sbin/iconvconfig  "
-
-glibc-devel-staticfiles = "/usr/lib64/libBrokenLocale.a /usr/lib64/libanl.a /usr/lib64/libc.a /usr/lib64/libcrypt.a /usr/lib64/libdl.a /usr/lib64/libm.a /usr/lib64/libnsl.a /usr/lib64/libpthread.a /usr/lib64/libresolv.a /usr/lib64/librt.a /usr/lib64/libutil.a "
-
-glibc-extrafiles = "/usr/bin/makedb /var/lib/misc/Makefile   "
-
-glibc-profilefiles = "/usr/lib64/libc_p.a /usr/lib64/libBrokenLocale_p.a /usr/lib64/libanl_p.a /usr/lib64/libm_p.a /usr/lib64/libcrypt_p.a /usr/lib64/libpthread_p.a /usr/lib64/libresolv_p.a /usr/lib64/libnsl_p.a /usr/lib64/librt_p.a /usr/lib64/librpcsvc_p.a /usr/lib64/libutil_p.a /usr/lib64/libdl_p.a "
-
-glibc-infofiles = ""
-
-nscdfiles = "/usr/sbin/nscd /usr/sbin/rcnscd /usr/lib/systemd/system/nscd.service /usr/lib/tmpfiles.d/nscd.conf "
-
-glibc-i18ndatafiles = "/usr/share/i18n "
-
-glibc-htmlfiles = ""
-
-FILES_glibc-devel = "${glibc-develfiles}"
-FILES_glibc-locale = "${glibc-localefiles}"
-FILES_glibc-utils = "${glibc-utilsfiles}"
-FILES_glibc- = "${glibc-files}"
-FILES_glibc-devel-static = "${glibc-devel-staticfiles}"
-FILES_glibc-extra = "${glibc-extrafiles}"
-FILES_glibc-profile = "${glibc-profilefiles}"
-FILES_glibc-info = "${glibc-infofiles}"
-FILES_nscd = "${nscdfiles}"
-FILES_glibc-i18ndata = "${glibc-i18ndatafiles}"
-FILES_glibc-html = "${glibc-htmlfiles}"
-
-SPECFILES = "packaging/glibc.spec"
-
-BBCLASSEXTEND =+ "native"
-
-require recipes-BaseSystem/tizenBuildUtils/tizenBuildUtils.inc
-
-require glibc-extraconf.inc
diff --git a/meta-tizen/recipes-BaseSystem/glibc/glibc_git.bb~ b/meta-tizen/recipes-BaseSystem/glibc/glibc_git.bb~
deleted file mode 100644 (file)
index fb69087..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-require glibc.inc
-
-SRC_URI = "git://tz.otcshare.org/profile/base/glibc.git;protocol=ssh;tag=master"
diff --git a/meta-tizen/recipes-BaseSystem/kmod/kmod.inc~ b/meta-tizen/recipes-BaseSystem/kmod/kmod.inc~
deleted file mode 100644 (file)
index d96f812..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-DESCRIPTION = "Utilities to load modules into the kernel"
-HOMEPAGE = "http://www.politreco.com/2011/12/announce-kmod-2/"
-SECTION = "System/Kernel"
-PRIORITY = ""
-LICENSE = "LGPL-2.1+ and GPL-2.0+"
-
-PACKAGES = ""
-PACKAGES += "kmod"
-PACKAGES += "libkmod"
-PACKAGES += "kmod-compat"
-PACKAGES_kmod += "compat"
-PACKAGES += "libkmod-devel"
-RPROVIDES_${PN}="compat"
-DEPENDS = ""
-DEPENDS += "autoconf"
-DEPENDS += "automake"
-DEPENDS += "libtool"
-DEPENDS += "pkgconfig "
-DEPENDS += "xz"
-DEPENDS += "liblzma"
-DEPENDS += "zlib"
-
-RDEPENDS = ""
-
-S = "${WORKDIR}/git"
diff --git a/meta-tizen/recipes-BaseSystem/libcap-ng/libcap-ng.inc~ b/meta-tizen/recipes-BaseSystem/libcap-ng/libcap-ng.inc~
deleted file mode 100644 (file)
index 8b56411..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-DESCRIPTION = "An alternate POSIX capabilities library"
-HOMEPAGE = "http://people.redhat.com/sgrubb/libcap-ng"
-SECTION = "System/Libraries"
-PRIORITY = ""
-LICENSE = "LGPL-2.1+"
-
-PACKAGES = ""
-PACKAGES += "libcap-ng"
-PACKAGES += "libcap-ng-devel"
-PACKAGES += "libcap-ng-utils"
-
-PROVIDES = ""
-PROVIDES += "libcap-ng"
-PROVIDES += "libcap-ng-devel"
-PROVIDES += "libcap-ng-utils"
-
-DEPENDS = ""
-DEPENDS += "kernel-headers "
-DEPENDS += "libattr-devel"
-DEPENDS += "pkg-config"
-DEPENDS += "python"
-
-RDEPENDS = ""
-
-SPECFILES = "packaging/libcap-ng.spec"
-
-S = "${WORKDIR}/git"
-require recipes-BaseSystem/tizenBuildUtils/tizenBuildUtils.inc
-
-require libcap-ng-extraconf.inc
diff --git a/meta-tizen/recipes-BaseSystem/packagegroups/packagegroup-tizen-core-boot.bb~ b/meta-tizen/recipes-BaseSystem/packagegroups/packagegroup-tizen-core-boot.bb~
deleted file mode 100644 (file)
index 16ad4e3..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-#
-# Copyright (C) 2007 OpenedHand Ltd.
-#
-
-SUMMARY = "Minimal boot requirements"
-DESCRIPTION = "The minimal set of packages required to boot the system"
-LICENSE = "MIT"
-DEPENDS = "virtual/kernel"
-PR = "r10"
-
-inherit packagegroup
-
-PACKAGE_ARCH = "${MACHINE_ARCH}"
-
-#
-# Set by the machine configuration with packages essential for device bootup
-#
-MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= ""
-MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS ?= ""
-
-# For backwards compatibility after rename
-RPROVIDES_${PN} = "task-core-boot"
-RREPLACES_${PN} = "task-core-boot"
-RCONFLICTS_${PN} = "task-core-boot"
-
-# Distro can override the following VIRTUAL-RUNTIME providers:
-VIRTUAL-RUNTIME_dev_manager ?= "udev"
-VIRTUAL-RUNTIME_login_manager ?= "tinylogin"
-VIRTUAL-RUNTIME_init_manager ?= "sysvinit"
-VIRTUAL-RUNTIME_initscripts ?= "initscripts"
-VIRTUAL-RUNTIME_keymaps ?= "keymaps"
-
-RDEPENDS_${PN} = "\
-    base-files \
-    base-passwd \
-    busybox \
-    ${@base_contains("MACHINE_FEATURES", "rtc", "busybox-hwclock", "", d)} \
-    ${VIRTUAL-RUNTIME_initscripts} \
-    ${@base_contains("MACHINE_FEATURES", "keyboard", "${VIRTUAL-RUNTIME_keymaps}", "", d)} \
-    modutils-initscripts \
-    netbase \
-    ${VIRTUAL-RUNTIME_login_manager} \
-    ${VIRTUAL-RUNTIME_init_manager} \
-    ${VIRTUAL-RUNTIME_dev_manager} \
-    ${VIRTUAL-RUNTIME_update-alternatives} \
-    ${MACHINE_ESSENTIAL_EXTRA_RDEPENDS}"
-
-RRECOMMENDS_${PN} = "\
-    ${MACHINE_ESSENTIAL_EXTRA_RRECOMMENDS}"
diff --git a/meta-tizen/recipes-BaseSystem/rpm/rpm.inc~ b/meta-tizen/recipes-BaseSystem/rpm/rpm.inc~
deleted file mode 100644 (file)
index 454f3aa..0000000
+++ /dev/null
@@ -1,112 +0,0 @@
-DESCRIPTION = "The RPM Package Manager"
-HOMEPAGE = ""
-SECTION = "System/Packages"
-PRIORITY = ""
-LICENSE = "GPL-2.0+"
-
-PROVIDES = ""
-#PROVIDES by rpm-security-plugin 
-PROVIDES += "rpm-security-plugin"
-RPROVIDES_rpm-security-plugin += "rpm-security-plugin"
-
-#PROVIDES by rpm-devel 
-PROVIDES += "rpm-devel"
-RPROVIDES_rpm-devel += "rpm-devel"
-
-#PROVIDES by rpm 
-PROVIDES += "rpm"
-RPROVIDES_rpm += "rpm"
-PROVIDES += "rpminst"
-RPROVIDES_rpm += "rpminst"
-PROVIDES += "rpm-libs"
-RPROVIDES_rpm += "rpm-libs"
-
-#PROVIDES by rpm-build 
-PROVIDES += "rpm-build"
-RPROVIDES_rpm-build += "rpm-build"
-PROVIDES += "rpmbuildrpm:/usr/bin/rpmbuild"
-RPROVIDES_rpm-build += "rpmbuildrpm:/usr/bin/rpmbuild"
-
-
-DEPENDS = ""
-#DEPENDS of rpm 
-DEPENDS += "binutils"
-DEPENDS += "bzip2"
-DEPENDS += "file"
-DEPENDS += "findutils"
-DEPENDS += "gcc"
-DEPENDS += "gettext"
-DEPENDS += "glibc"
-DEPENDS += "gzip"
-DEPENDS += "libacl"
-DEPENDS += "bzip2"
-DEPENDS += "libcap"
-DEPENDS += "libelf"
-DEPENDS += "libtool"
-DEPENDS += "lua"
-DEPENDS += "make"
-DEPENDS += "ncurses"
-DEPENDS += "patch"
-DEPENDS += "popt"
-DEPENDS += "xz"
-DEPENDS += "zlib"
-DEPENDS += "nss"
-DEPENDS += "uthash"
-DEPENDS += "libxml2"
-DEPENDS += "libattr"
-DEPENDS += "libsmack"
-
-
-RDEPENDS = ""
-#RDEPENDS of rpm-security-plugin 
-# the RDEPENDS rules is ignore "rpm = 4.11.0.1-0"
-RDEPENDS_rpm-security-plugin += "rpm"
-RDEPENDS_rpm-security-plugin += "smack"
-RDEPENDS_rpm-security-plugin += "libxml2"
-RDEPENDS_rpm-security-plugin += "nss"
-
-#RDEPENDS of rpm-devel 
-# the RDEPENDS rules is ignore "rpm = 4.11.0.1"
-RDEPENDS_rpm-devel += "rpm"
-RDEPENDS_rpm-devel += "popt-devel"
-
-#RDEPENDS of rpm-build 
-# the RDEPENDS rules is ignore "rpm = 4.11.0.1"
-RDEPENDS_rpm-build += "rpm"
-RDEPENDS_rpm-build += "bzip2"
-RDEPENDS_rpm-build += "xz"
-RDEPENDS_rpm-build += "gzip"
-RDEPENDS_rpm-build += "binutils"
-RDEPENDS_rpm-build += "make"
-RDEPENDS_rpm-build += "gcc"
-RDEPENDS_rpm-build += "findutils"
-RDEPENDS_rpm-build += "patch"
-RDEPENDS_rpm-build += "glibc-devel"
-
-
-PACKAGES = ""
-PACKAGES += "rpm-build"
-PACKAGES += "rpm-devel"
-PACKAGES += "rpm-"
-PACKAGES += "rpm-security-plugin"
-
-rpm-buildfiles = "/usr/bin/rpmbuild /usr/bin/gendiff /usr/bin/rpmspec /usr/bin/rpmsign  /usr/lib64/librpmbuild.so.* /usr/lib64/librpmsign.so.* /usr/lib/rpm/tizen/find-* /usr/lib/rpm/brp-* /usr/lib/rpm/find-supplements* /usr/lib/rpm/check-* /usr/lib/rpm/debugedit /usr/lib/rpm/find-debuginfo.sh /usr/lib/rpm/find-lang.sh /usr/lib/rpm/*provides* /usr/lib/rpm/*requires* /usr/lib/rpm/*deps* /usr/lib/rpm/*.prov /usr/lib/rpm/*.req /usr/lib/rpm/macros.* /usr/lib/rpm/fileattrs  "
-
-rpm-develfiles = "/usr/bin/rpmgraph /usr/include/rpm         /usr/lib64/librpm.so         /usr/lib64/librpmbuild.so         /usr/lib64/librpmio.so         /usr/lib64/librpmsign.so         /usr/lib64/pkgconfig/rpm.pc "
-
-rpm-files = "  /etc/rpm        /bin/rpm /usr/bin/rpm2cpio /usr/bin/rpmdb /usr/bin/rpmkeys /usr/bin/rpmquery /usr/bin/rpmverify /usr/bin/rpmqpack /usr/lib/rpm/macros /usr/lib/rpm/macros.d /usr/lib/rpm/rpmpopt* /usr/lib/rpm/rpmrc /usr/lib/rpm/tizen/macros /usr/lib/rpm/tizen_macros /usr/lib/rpm/rpm.supp /usr/lib/rpm/tgpg /usr/lib/rpm/platform          /usr/lib64/rpm-plugins/exec.so  /usr/lib64/librpm.so.*  /usr/lib64/librpmio.so.* "
-
-rpm-security-pluginfiles = "/usr/lib64/rpm-plugins/msm.so  "
-
-FILES_rpm-build = "${rpm-buildfiles}"
-FILES_rpm-devel = "${rpm-develfiles}"
-FILES_rpm- = "${rpm-files}"
-FILES_rpm-security-plugin = "${rpm-security-pluginfiles}"
-
-SPECFILES = "packaging/rpm.spec"
-
-BBCLASSEXTEND =+ "native"
-
-require recipes-BaseSystem/tizenBuildUtils/tizenBuildUtils.inc
-
-require rpm-extraconf.inc
diff --git a/meta-tizen/recipes-BaseSystem/systemd/systemd-extraconf.inc~ b/meta-tizen/recipes-BaseSystem/systemd/systemd-extraconf.inc~
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/meta-tizen/recipes-BaseSystem/systemd/systemd.inc~ b/meta-tizen/recipes-BaseSystem/systemd/systemd.inc~
deleted file mode 100644 (file)
index dfcdb96..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-DESCRIPTION = "A System and Service Manager"
-HOMEPAGE = "http://www.freedesktop.org/wiki/Software/systemd"
-SECTION = ""
-PRIORITY = ""
-LICENSE = "LGPLv2+ and MIT and GPLv2+"
-
-PROVIDES = ""
-PROVIDES += "systemd"
-PROVIDES += "systemd-devel"
-PROVIDES += "systemd-analyze"
-PROVIDES += "libgudev-devel"
-PROVIDES += "libsystemd"
-PROVIDES += "libgudev"
-
-RPROVIDES = ""
-RPROVIDES += "systemd"
-RPROVIDES += "systemd-devel"
-RPROVIDES += "systemd-analyze"
-RPROVIDES += "libgudev-devel"
-RPROVIDES += "libsystemd"
-RPROVIDES += "libgudev"
-
-DEPENDS = ""
-DEPENDS += "libcap-devel"
-DEPENDS += "libgcrypt-devel"
-DEPENDS += "pam-devel"
-DEPENDS += "dbus-devel"
-DEPENDS += "libxslt"
-DEPENDS += "pkgconfig"
-DEPENDS += "libacl-devel"
-DEPENDS += "pciutils-devel"
-DEPENDS += "glib2-devel"
-DEPENDS += "hwdata"
-DEPENDS += "usbutils >= 0.82"
-DEPENDS += "libblkid-devel >= 2.20"
-DEPENDS += "intltool >= 0.40.0"
-DEPENDS += "gperf"
-DEPENDS += "xz-devel"
-DEPENDS += "libkmod-devel >= 5"
-
-RDEPENDS = ""
-
-S = "${WORKDIR}/git"
diff --git a/meta-tizen/recipes-BaseSystem/tizenBuildUtils/tizenBuildUtils.inc~ b/meta-tizen/recipes-BaseSystem/tizenBuildUtils/tizenBuildUtils.inc~
deleted file mode 100644 (file)
index 1803712..0000000
+++ /dev/null
@@ -1,81 +0,0 @@
-do_patch_prepend () {
-echo RLM do_install_prepend
-cd ${S}
-}
-
-do_patch () {
-echo RLM begining of do_patch
-echo RLM end of do_patch
-}
-
-do_configure_prepend () {
-echo RLM do_compile_prepend
-cd ${S}
-}
-
-do_configure () {
-echo RLM begining of do_configure
-echo RLM end of do_configure
-}
-
-do_compile_prepend () {
-echo RLM do_compile_prepend
-mkdir -p ${S}/../temp
-create-package-initial "compile" ${S}/${SPECFILES} > ${S}/../temp/Bash_compile
-cd ${S}
-}
-
-do_compile () {
-    echo RLM begining of do_compile 
-    source ${S}/../temp/Bash_compile
-    echo RLM end of do_compile 
-    
-}
-
-do_install_prepend () {
-echo RLM do_install_prepend
-cd ${S}
-}
-
-do_install () {
-    echo RLM begining of do_install 
-    echo RLM end of do_install 
-}
-
-python  do_package_prepend () {
-    print "toto"
-    #echo RLM begining of do_package_prepend 
-    #echo RLM end of do_package_prepend 
-}
-
-python do_package () {
-    # Change the following version to cause sstate to invalidate the package
-    # cache.  This is useful if an item this class depends on changes in a
-    # way that the output of this class changes.  rpmdeps is a good example
-    # as any change to rpmdeps requires this to be rerun.
-    # PACKAGE_BBCLASS_VERSION = "1"
-
-    packages = (d.getVar('PACKAGES', True) or "").split()
-    if len(packages) < 1:
-        bb.debug(1, "No packages to build, skipping do_package")
-        return
-
-    workdir = d.getVar('WORKDIR', True)
-    outdir = d.getVar('DEPLOY_DIR', True)
-    dest = d.getVar('D', True)
-    dvar = d.getVar('PKGD', True)
-    pn = d.getVar('PN', True)
-
-    if not workdir or not outdir or not dest or not dvar or not pn:
-        bb.error("WORKDIR, DEPLOY_DIR, D, PN and PKGD all must be defined, unable to package")
-        return
-
-    for f in (d.getVar('PACKAGEFUNCS', True) or '').split():
-        if not f == "do_package_qa":
-            print "RLM do:",f
-            bb.build.exec_func(f, d)
-}
-
-
-
-
diff --git a/meta-tizen/recipes-BaseSystem/util-linux/util-linux-extraconf.inc~ b/meta-tizen/recipes-BaseSystem/util-linux/util-linux-extraconf.inc~
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/meta-tizen/recipes-Development/flex/flex.inc~ b/meta-tizen/recipes-Development/flex/flex.inc~
deleted file mode 100644 (file)
index b17cc5a..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-DESCRIPTION = "Fast Lexical Analyzer Generator"
-HOMEPAGE = "http://flex.sourceforge.net/"
-SECTION = "Development/Languages/C and C++"
-PRIORITY = ""
-LICENSE = "BSD-3-Clause"
-
-PROVIDES = ""
-#PROVIDES by flex 
-PROVIDES += "flex"
-RPROVIDES_flex += "flex"
-
-
-DEPENDS = ""
-#DEPENDS of flex 
-DEPENDS += "automake"
-DEPENDS += "makeinfo"
-DEPENDS += "bison"
-DEPENDS += "gcc"
-DEPENDS += "gettext-tools"
-
-
-RDEPENDS = ""
-#RDEPENDS of flex 
-RDEPENDS_flex += "m4"
-
-
-PACKAGES = ""
-PACKAGES += "flex-"
-
-flex-files = "/usr/bin/flex /usr/bin/flex++ /usr/bin/lex /usr/include/FlexLexer.h /usr/lib64/libfl.a "
-
-FILES_flex- = "${flex-files}"
-
-SPECFILES = "packaging/flex.spec"
-
-BBCLASSEXTEND =+ "native"
-
-require recipes-BaseSystem/tizenBuildUtils/tizenBuildUtils.inc
-
-require flex-extraconf.inc
diff --git a/meta-tizen/recipes-DevelopmentExtra/bc/bc.inc~ b/meta-tizen/recipes-DevelopmentExtra/bc/bc.inc~
deleted file mode 100644 (file)
index d9d28c4..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-DESCRIPTION = "GNU Command Line Calculator"
-HOMEPAGE = "ftp://ftp.gnu.org/pub/gnu/bc"
-SECTION = "Productivity/Scientific/Math"
-PRIORITY = ""
-LICENSE = "GPL-2.0+"
-
-PROVIDES = ""
-#PROVIDES by bc 
-PROVIDES += "bc"
-RPROVIDES_bc += "bc"
-
-
-DEPENDS = ""
-#DEPENDS of bc 
-DEPENDS += "automakebisonedflexreadline"
-
-
-RDEPENDS = ""
-
-PACKAGES = ""
-PACKAGES += "bc-"
-
-bc-files = "/usr/bin/bc /usr/bin/dc /usr/share/info/*.info* /usr/share/man/man1/*  "
-
-FILES_bc- = "${bc-files}"
-
-SPECFILES = "packaging/bc.spec"
-
-BBCLASSEXTEND =+ "native"
-
-require recipes-BaseSystem/tizenBuildUtils/tizenBuildUtils.inc
-
-require bc-extraconf.inc
diff --git a/meta-tizen/recipes-DevelopmentExtra/bzip2/bzip2-extraconf.inc~ b/meta-tizen/recipes-DevelopmentExtra/bzip2/bzip2-extraconf.inc~
deleted file mode 100644 (file)
index 03a7eff..0000000
+++ /dev/null
@@ -1 +0,0 @@
-PROVIDES += "bzip2-devel"
diff --git a/meta-tizen/recipes-DevelopmentExtra/expat/expat.inc~ b/meta-tizen/recipes-DevelopmentExtra/expat/expat.inc~
deleted file mode 100644 (file)
index 0390dad..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-DESCRIPTION = "An XML parser library"
-HOMEPAGE = "http://www.libexpat.org/"
-SECTION = "System/Libraries"
-PRIORITY = ""
-LICENSE = "MIT"
-
-PACKAGES = ""
-PACKAGES += "expat"
-PACKAGES += "expat-devel"
-PACKAGES += "expat-doc"
-
-PROVIDES = ""
-PROVIDES += "expat"
-PROVIDES += "expat-devel"
-PROVIDES += "expat-doc"
-
-DEPENDS = ""
-DEPENDS += "autoconf,"
-DEPENDS += "automake,"
-DEPENDS += "libtool"
-
-RDEPENDS = ""
-
-S = "${WORKDIR}/git"
-require recipes-BaseSystem/tizenBuildUtils/tizenBuildUtils.inc
-
-require expat-extraconf.inc
diff --git a/meta-tizen/recipes-DevelopmentExtra/fdupes/fdupes-extraconf.inc~ b/meta-tizen/recipes-DevelopmentExtra/fdupes/fdupes-extraconf.inc~
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/meta-tizen/recipes-DevelopmentExtra/gcc47/gcc47-extraconf.inc~ b/meta-tizen/recipes-DevelopmentExtra/gcc47/gcc47-extraconf.inc~
deleted file mode 100644 (file)
index 9e78bf2..0000000
+++ /dev/null
@@ -1 +0,0 @@
-RPROVIDES += "gcc47-gij-32bit"
diff --git a/meta-tizen/recipes-DevelopmentExtra/gettext/gettext-extraconf.inc~ b/meta-tizen/recipes-DevelopmentExtra/gettext/gettext-extraconf.inc~
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/meta-tizen/recipes-DevelopmentExtra/gettext/gettext.inc~ b/meta-tizen/recipes-DevelopmentExtra/gettext/gettext.inc~
deleted file mode 100644 (file)
index 446d485..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-DESCRIPTION = "GNU libraries and utilities for producing multi-lingual messages"
-HOMEPAGE = "http://www.gnu.org/software/gettext/"
-SECTION = "Development/Tools"
-PRIORITY = ""
-LICENSE = "GPLv3+ and LGPLv2+"
-
-PACKAGES = ""
-PACKAGES += "gettext"
-PACKAGES += "gettext-tools"
-PACKAGES += "gettext-runtime"
-
-PROVIDES = ""
-PROVIDES += "gettext"
-PROVIDES += "gettext-tools"
-PROVIDES += "gettext-runtime"
-
-DEPENDS = ""
-DEPENDS += "autoconf "
-DEPENDS += "bison"
-DEPENDS += "expat-devel"
-DEPENDS += "gcc-c++"
-DEPENDS += "libtool"
-DEPENDS += "libunistring"
-
-RDEPENDS = ""
-
-S = "${WORKDIR}/git"
-require recipes-BaseSystem/tizenBuildUtils/tizenBuildUtils.inc
-
-require gettext-extraconf.inc
diff --git a/meta-tizen/recipes-DevelopmentExtra/libzio/libzio-extraconf.inc~ b/meta-tizen/recipes-DevelopmentExtra/libzio/libzio-extraconf.inc~
deleted file mode 100644 (file)
index 2385630..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-PROVIDES += "libzio-devel"
-
diff --git a/meta-tizen/recipes-DevelopmentExtra/linux-glibc-devel/linux-glibc-devel-extraconf.inc~ b/meta-tizen/recipes-DevelopmentExtra/linux-glibc-devel/linux-glibc-devel-extraconf.inc~
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/meta-tizen/recipes-DevelopmentExtra/linux-glibc-devel/linux-glibc-devel.inc~ b/meta-tizen/recipes-DevelopmentExtra/linux-glibc-devel/linux-glibc-devel.inc~
deleted file mode 100644 (file)
index 0cf61a9..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-DESCRIPTION = "Linux headers for userspace development"
-HOMEPAGE = "http://www.kernel.org/"
-SECTION = "Development/Libraries/C and C++"
-PRIORITY = ""
-LICENSE = "GPL-2.0"
-
-PACKAGES = ""
-PACKAGES += "linux-glibc-devel"
-
-PROVIDES = ""
-#PROVIDES by linux-glibc-devel 
-PROVIDES += "linux-glibc-devel"
-PROVIDES += "kernel-headers"
-# the PROVIDES rules is ignore "linux-kernel-headers = 3.4.0"
-PROVIDES += "linux-kernel-headers"
-RPROVIDES += "linux-kernel-headers"
-
-DEPENDS = ""
-#DEPENDS of linux-glibc-devel 
-DEPENDS += "fdupes"
-
-
-RDEPENDS = ""
-
-SPECFILES = "packaging/linux-glibc-devel.spec"
-
-S = "${WORKDIR}/git"
-require recipes-BaseSystem/tizenBuildUtils/tizenBuildUtils.inc
-
-require linux-glibc-devel-extraconf.inc
diff --git a/meta-tizen/recipes-DevelopmentExtra/ncurses/ncurses-extraconf.inc~ b/meta-tizen/recipes-DevelopmentExtra/ncurses/ncurses-extraconf.inc~
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/meta-tizen/recipes-DevelopmentExtra/ncurses/ncurses.inc~ b/meta-tizen/recipes-DevelopmentExtra/ncurses/ncurses.inc~
deleted file mode 100644 (file)
index b0cfc44..0000000
+++ /dev/null
@@ -1,102 +0,0 @@
-DESCRIPTION = "New curses Libraries"
-HOMEPAGE = "http://invisible-island.net/ncurses/ncurses.html"
-SECTION = "System/Base"
-PRIORITY = ""
-LICENSE = "MIT"
-
-PROVIDES = ""
-#PROVIDES by ncurses-utils 
-PROVIDES += "ncurses-utils"
-RPROVIDES += "ncurses-utils"
-PROVIDES += "ncurses:/usr/bin/tput"
-RPROVIDES += "ncurses:/usr/bin/tput"
-
-#PROVIDES by terminfo-base 
-PROVIDES += "terminfo-base"
-RPROVIDES += "terminfo-base"
-PROVIDES += "ncurses:/usr/share/tabset"
-RPROVIDES += "ncurses:/usr/share/tabset"
-
-#PROVIDES by ncurses-devel 
-PROVIDES += "ncurses-devel"
-RPROVIDES += "ncurses-devel"
-PROVIDES += "ncurses:/usr/include/ncurses.h"
-RPROVIDES += "ncurses:/usr/include/ncurses.h"
-
-#PROVIDES by ncurses 
-PROVIDES += "ncurses"
-RPROVIDES += "ncurses"
-
-#PROVIDES by libncurses 
-PROVIDES += "libncurses"
-RPROVIDES += "libncurses"
-# the PROVIDES rules is ignore "ncurses = 5.9"
-PROVIDES += "ncurses"
-RPROVIDES += "ncurses"
-
-#PROVIDES by libncurses6 
-PROVIDES += "libncurses6"
-RPROVIDES += "libncurses6"
-# the PROVIDES rules is ignore "ncurses = 6.0"
-PROVIDES += "ncurses"
-RPROVIDES += "ncurses"
-
-#PROVIDES by terminfo 
-PROVIDES += "terminfo"
-RPROVIDES += "terminfo"
-
-
-DEPENDS = ""
-#DEPENDS of ncurses 
-DEPENDS += "gcc"
-
-
-RDEPENDS = ""
-#RDEPENDS of ncurses-devel 
-# the RDEPENDS rules is ignore "ncurses = 5.9-0"
-RDEPENDS += "ncurses"
-# the RDEPENDS rules is ignore "libncurses = 5.9-0"
-RDEPENDS += "libncurses"
-# the RDEPENDS rules is ignore "libncurses6 = 5.9-0"
-RDEPENDS += "libncurses6"
-
-#RDEPENDS of libncurses 
-RDEPENDS += "terminfo-base"
-
-#RDEPENDS of libncurses6 
-RDEPENDS += "terminfo-base"
-
-
-PACKAGES = ""
-PACKAGES += "ncurses-utils"
-PACKAGES += "terminfo-base"
-PACKAGES += "ncurses-devel"
-PACKAGES += "ncurses-"
-PACKAGES += "libncurses"
-PACKAGES += "libncurses6"
-
-ncurses-utilsfiles = "/usr/bin/clear /usr/bin/reset /usr/bin/tabs /usr/bin/toe /usr/bin/tput /usr/bin/tset "
-
-terminfo-basefiles = "/etc/termcap "
-
-ncurses-develfiles = "/usr/bin/ncurses*-config /usr/bin/captoinfo /usr/bin/infocmp /usr/bin/infotocap /usr/bin/tic /usr/include/*.h /usr/include/ncurses*/*.h /usr/include/ncurses*/*/*.h /usr/lib64/lib*.a /usr/lib64/lib*.so /usr/lib64/ncurses6/lib*.a /usr/lib64/ncurses6/lib*.so  "
-
-ncurses-files = " "
-
-libncursesfiles = "/lib64/lib*.so.5* /usr/lib64/lib*.so.5* "
-
-libncurses6files = "/lib64/lib*.so.6* /usr/lib64/lib*.so.6* "
-
-FILES_ncurses-utils = "${ncurses-utilsfiles}"
-FILES_terminfo-base = "${terminfo-basefiles}"
-FILES_ncurses-devel = "${ncurses-develfiles}"
-FILES_ncurses- = "${ncurses-files}"
-FILES_libncurses = "${libncursesfiles}"
-FILES_libncurses6 = "${libncurses6files}"
-
-SPECFILES = "packaging/ncurses.spec"
-
-S = "${WORKDIR}/git"
-require recipes-BaseSystem/tizenBuildUtils/tizenBuildUtils.inc
-
-require ncurses-extraconf.inc
diff --git a/meta-tizen/recipes-DevelopmentExtra/smack/smack-extraconf.inc~ b/meta-tizen/recipes-DevelopmentExtra/smack/smack-extraconf.inc~
deleted file mode 100644 (file)
index e69de29..0000000
diff --git a/meta-tizen/recipes-DevelopmentExtra/texinfo/texinfo-extraconf.inc~ b/meta-tizen/recipes-DevelopmentExtra/texinfo/texinfo-extraconf.inc~
deleted file mode 100644 (file)
index 2247eb9..0000000
+++ /dev/null
@@ -1 +0,0 @@
-PROVIDES += "makeinfo"
diff --git a/meta-tizen/recipes-DevelopmentExtra/texinfo/texinfo.inc~ b/meta-tizen/recipes-DevelopmentExtra/texinfo/texinfo.inc~
deleted file mode 100644 (file)
index 776656d..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-DESCRIPTION = "Tools Needed to Create Documentation from Texinfo Sources"
-HOMEPAGE = "http://www.texinfo.org"
-SECTION = "Productivity/Publishing/Texinfo"
-PRIORITY = ""
-LICENSE = "GPL-2.0+ ; GPL-3.0+"
-
-PROVIDES = ""
-#PROVIDES by info 
-PROVIDES += "info"
-RPROVIDES_info += "info"
-
-#PROVIDES by texinfo 
-PROVIDES += "texinfo"
-RPROVIDES_texinfo += "texinfo"
-# the PROVIDES rules is ignore "texi2html = 1.82"
-PROVIDES += "texi2html"
-RPROVIDES_texinfo += "texi2html"
-# the PROVIDES rules is ignore "texi2roff = 2.0"
-PROVIDES += "texi2roff"
-RPROVIDES_texinfo += "texi2roff"
-
-#PROVIDES by makeinfo 
-PROVIDES += "makeinfo"
-RPROVIDES_makeinfo += "makeinfo"
-PROVIDES += "texinfo:/usr/bin/makeinfo"
-RPROVIDES_makeinfo += "texinfo:/usr/bin/makeinfo"
-
-
-DEPENDS = ""
-#DEPENDS of texinfo 
-DEPENDS += "automake"
-DEPENDS += "help2man"
-DEPENDS += "bzip2"
-DEPENDS += "libzio"
-DEPENDS += "ncurses"
-DEPENDS += "gettext-minimal-native"
-DEPENDS += "zlib"
-
-
-RDEPENDS = ""
-
-PACKAGES = ""
-PACKAGES += "info"
-PACKAGES += "texinfo-"
-PACKAGES += "makeinfo"
-
-infofiles = "/sbin/install-info /usr/bin/install-info /usr/bin/info /usr/bin/infokey /usr/share/info/info.info* /usr/share/info/info-stnd.info* /usr/share/man/man1/info.1* /usr/share/man/man1/infokey.1* /usr/share/man/man1/install-info.1* /usr/share/man/man5/info.5*  "
-
-texinfo-files = "/usr/bin/pdftexi* /usr/bin/texi* /usr/share/info/texinfo*.gz /usr/share/info/texi2html*.gz /usr/share/man/man1/pdftexi2dvi.1.gz /usr/share/man/man1/texi*.1.gz /usr/share/man/man5/texinfo.5.gz /usr/share/texinfo /usr/share/texi2html "
-
-makeinfofiles = "/usr/bin/makeinfo /usr/share/man/man1/makeinfo.1.gz "
-
-FILES_info = "${infofiles}"
-FILES_texinfo- = "${texinfo-files}"
-FILES_makeinfo = "${makeinfofiles}"
-
-SPECFILES = "packaging/texinfo.spec"
-
-BBCLASSEXTEND =+ "native"
-
-require recipes-BaseSystem/tizenBuildUtils/tizenBuildUtils.inc
-
-require texinfo-extraconf.inc
diff --git a/meta-tizen/recipes-DevelopmentExtra/texinfo/texinfo_git.bb~ b/meta-tizen/recipes-DevelopmentExtra/texinfo/texinfo_git.bb~
deleted file mode 100644 (file)
index 9580700..0000000
+++ /dev/null
@@ -1,5 +0,0 @@
-require texinfo.inc
-
-S = "${WORKDIR}/git"
-
-SRC_URI = "git://tz.otcshare.org/profile/base/texinfo.git;protocol=ssh;tag=master"