From: Kim Kibum Date: Sun, 29 Apr 2012 07:58:22 +0000 (+0900) Subject: upload tizen1.0 source X-Git-Tag: 2.0_alpha~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5b169c96380f8adfdb2a03c65dcf49e97b561d4e;p=platform%2Fcore%2Fapi%2Fcommon.git upload tizen1.0 source --- diff --git a/debian/changelog b/debian/changelog index 8d769be..4b9a5d2 100755 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,35 @@ +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 - * Add AD error 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. diff --git a/include/tizen_error.h b/include/tizen_error.h index d67b673..b80bdf4 100755 --- a/include/tizen_error.h +++ b/include/tizen_error.h @@ -77,6 +77,8 @@ #define TIZEN_ERROR_AD_CLASS -0x00200000 /** Web Error class */ #define TIZEN_ERROR_WEB_CLASS -0x00400000 +/** DRM Error class */ +#define TIZEN_ERROR_DRM_CLASS -0x00800000 typedef enum { @@ -111,6 +113,7 @@ typedef enum TIZEN_ERROR_FILE_NO_SPACE_ON_DEVICE = -ENOSPC, /**< No space left on device */ TIZEN_ERROR_ILLEGAL_SEEK = -ESPIPE, /**< Illegal seek */ TIZEN_ERROR_READ_ONLY_FILESYSTEM = -EROFS, /**< Read-only file system */ + TIZEN_ERROR_NO_DATA = -ENODATA, /**< No data available */ TIZEN_ERROR_TOO_MANY_LINKS = -EMLINK, /**< Too many links */ TIZEN_ERROR_BROKEN_PIPE = -EPIPE, /**< Broken pipe */ diff --git a/packaging/capi-base-common.spec b/packaging/capi-base-common.spec index 34c7d4e..2293a8b 100755 --- a/packaging/capi-base-common.spec +++ b/packaging/capi-base-common.spec @@ -1,19 +1,26 @@ Name: capi-base-common -Summary: TO BE FILLED IN -Version: 0.1.0 -Release: 1 +Summary: Common header files of Tizen Native API +Version: 0.1.0 +Release: 7 Group: TO_BE/FILLED_IN License: Apache-2.0 Source0: %{name}-%{version}.tar.gz BuildRequires: cmake %description +Common header files of Tizen Native API - - + +%package devel +Summary: Common header files of Tizen Native API (Development) +Group: TO_BE/FILLED_IN +Requires: %{name} = %{version}-%{release} + +%description devel +Common header files of Tizen Native API %prep -%setup -q +%setup -q %build @@ -29,6 +36,8 @@ rm -rf %{buildroot} %files + +%files devel /usr/include/*.h /usr/lib/pkgconfig/capi-base-common.pc