diff options
author | Kim Kibum <kb0929.kim@samsung.com> | 2012-04-29 16:58:22 +0900 |
---|---|---|
committer | Kim Kibum <kb0929.kim@samsung.com> | 2012-04-29 16:58:22 +0900 |
commit | 5b169c96380f8adfdb2a03c65dcf49e97b561d4e (patch) | |
tree | 7da3173075364f349b63e8faeaa1d5a383de826e | |
parent | 3c1b25aac4a065603025eec729258c95de46a3cb (diff) | |
download | common-5b169c96380f8adfdb2a03c65dcf49e97b561d4e.tar.gz common-5b169c96380f8adfdb2a03c65dcf49e97b561d4e.tar.bz2 common-5b169c96380f8adfdb2a03c65dcf49e97b561d4e.zip |
upload tizen1.0 source
-rwxr-xr-x | debian/changelog | 27 | ||||
-rwxr-xr-x | include/tizen_error.h | 3 | ||||
-rwxr-xr-x | packaging/capi-base-common.spec | 21 |
3 files changed, 44 insertions, 7 deletions
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 <wy80.choi@samsung.com> 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 <wy80.choi@samsung.com> 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 <junghyuk.park@samsung.com> 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 <junghyuk.park@samsung.com> 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 |