From e133d54607220501495883898aa06c0e9bfc6bf1 Mon Sep 17 00:00:00 2001 From: Woongsuk Cho Date: Thu, 23 Aug 2012 18:39:14 +0900 Subject: [PATCH] 2.0 beta init --- debian/README | 0 debian/capi-base-common-dev.install | 3 -- debian/changelog | 37 --------------------- debian/compat | 1 - debian/control | 11 ------- debian/rules | 64 ------------------------------------- include/tizen_error.h | 2 ++ packaging/capi-base-common.spec | 2 +- 8 files changed, 3 insertions(+), 117 deletions(-) delete mode 100755 debian/README delete mode 100755 debian/capi-base-common-dev.install delete mode 100755 debian/changelog delete mode 100755 debian/compat delete mode 100755 debian/control delete mode 100755 debian/rules mode change 100755 => 100644 include/tizen_error.h mode change 100755 => 100644 packaging/capi-base-common.spec diff --git a/debian/README b/debian/README deleted file mode 100755 index e69de29..0000000 diff --git a/debian/capi-base-common-dev.install b/debian/capi-base-common-dev.install deleted file mode 100755 index e9ca4da..0000000 --- a/debian/capi-base-common-dev.install +++ /dev/null @@ -1,3 +0,0 @@ -/usr/include/* -/usr/lib/pkgconfig/*.pc - diff --git a/debian/changelog b/debian/changelog deleted file mode 100755 index 4b9a5d2..0000000 --- a/debian/changelog +++ /dev/null @@ -1,37 +0,0 @@ -capi-base-common (0.1.0-7) unstable; urgency=low - - * Add TIZEN_ERROR_DRM_CLASS - * Git: api/common - * Tag: capi-base-common_0.1.0-7 - - -- WonYoung Choi Mon, 19 Mar 2012 19:05:23 +0900 - -capi-base-common (0.1.0-6) unstable; urgency=low - - * Add TIZEN_ERROR_NO_DATA - * Git: api/common - * Tag: capi-base-common_0.1.0-6 - - -- WonYoung Choi Mon, 27 Feb 2012 15:55:33 +0900 - -capi-base-common (0.1.0-5) unstable; urgency=low - - * Add TIZEN_ERROR_WEB_CLASS - * Git: api/common - * Tag: capi-base-common_0.1.0-5 - - -- Junghyuk Park Thu, 02 Feb 2012 17:43:07 +0900 - -capi-base-common (0.1.0-4) unstable; urgency=low - - * Added AD error class - * Git: api/common - * Tag: capi-base-common_0.1.0-4 - - -- Junghyuk Park Mon, 30 Jan 2012 14:00:33 +0900 - -capi-base-common (0.1.0-3) unstable; urgency=low - - * Initial release. - - -- Woongsuk Cho Wed, 07 Dec 2011 05:38:55 +0300 diff --git a/debian/compat b/debian/compat deleted file mode 100755 index 7ed6ff8..0000000 --- a/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/debian/control b/debian/control deleted file mode 100755 index d39f06a..0000000 --- a/debian/control +++ /dev/null @@ -1,11 +0,0 @@ - -Source: capi-base-common -Section: libs -Priority: extra -Maintainer: Woongsuk Cho , Junghyuk Park -Build-Depends: debhelper (>= 5), - -Package: capi-base-common-dev -Architecture: any -Description: Common header files of Tizen Native API - diff --git a/debian/rules b/debian/rules deleted file mode 100755 index 2f845ff..0000000 --- a/debian/rules +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/make -f - -CFLAGS = -Wall -g - -ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) - CFLAGS += -O0 -else - CFLAGS += -O2 -endif -CMAKE_ROOT_DIR ?= $(CURDIR) -CMAKE_BUILD_DIR ?= $(CURDIR)/cmake_build_tmp - -configure: configure-stamp -configure-stamp: - dh_testdir - mkdir -p $(CMAKE_BUILD_DIR) && cd $(CMAKE_BUILD_DIR) && cmake .. - touch configure-stamp - - -build: build-stamp -build-stamp: configure-stamp - dh_testdir - cd $(CMAKE_BUILD_DIR) && $(MAKE) - touch $@ - -clean: - cd $(CMAKE_ROOT_DIR) - dh_testdir - dh_testroot - rm -f build-stamp configure-stamp - rm -f - rm -rf $(CMAKE_BUILD_DIR) - dh_clean - -install: build - dh_testdir - dh_testroot - dh_clean -k - dh_installdirs - - cd $(CMAKE_BUILD_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install - -binary-indep: build install - -binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs - dh_installdocs - dh_installexamples - dh_install --sourcedir=debian/tmp - dh_installman - dh_link - dh_fixperms - dh_makeshlibs - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb - -binary: binary-indep binary-arch -.PHONY: build clean binary-indep binary-arch binary install configure - diff --git a/include/tizen_error.h b/include/tizen_error.h old mode 100755 new mode 100644 index b80bdf4..779076b --- a/include/tizen_error.h +++ b/include/tizen_error.h @@ -79,6 +79,8 @@ #define TIZEN_ERROR_WEB_CLASS -0x00400000 /** DRM Error class */ #define TIZEN_ERROR_DRM_CLASS -0x00800000 +/** Account Error class */ +#define TIZEN_ERROR_ACCOUNT_CLASS -0x01000000 typedef enum { diff --git a/packaging/capi-base-common.spec b/packaging/capi-base-common.spec old mode 100755 new mode 100644 index 2293a8b..c36fa70 --- a/packaging/capi-base-common.spec +++ b/packaging/capi-base-common.spec @@ -1,7 +1,7 @@ Name: capi-base-common Summary: Common header files of Tizen Native API Version: 0.1.0 -Release: 7 +Release: 8 Group: TO_BE/FILLED_IN License: Apache-2.0 Source0: %{name}-%{version}.tar.gz -- 2.7.4