summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHyunjun Ko <zzoon.ko@samsung.com>2012-08-23 13:25:30 +0900
committerHyunjun Ko <zzoon.ko@samsung.com>2012-08-23 13:25:30 +0900
commit1bc0fe7e1b8ca4a7c6068448241d32fdfece06cc (patch)
tree6e10d12e566cdfac9f1a2fbc7036aba0f5806695
parent933fd44374830be92e08801629bd7eb00e8e1b71 (diff)
downloadlibmedia-thumbnail-1bc0fe7e1b8ca4a7c6068448241d32fdfece06cc.tar.gz
libmedia-thumbnail-1bc0fe7e1b8ca4a7c6068448241d32fdfece06cc.tar.bz2
libmedia-thumbnail-1bc0fe7e1b8ca4a7c6068448241d32fdfece06cc.zip
Remove debian and TC directories
-rwxr-xr-xTC/_export_env.sh16
-rwxr-xr-xTC/build.sh18
-rwxr-xr-xTC/execute.sh32
-rwxr-xr-xTC/making_new_tet_scen.py69
-rw-r--r--TC/tet_scen6
-rw-r--r--TC/tetbuild.cfg5
-rw-r--r--TC/tetclean.cfg5
-rw-r--r--TC/tetexec.cfg5
-rw-r--r--TC/tslist.txt1
-rw-r--r--TC/utc/Makefile41
-rw-r--r--TC/utc/tslist2
-rw-r--r--TC/utc/utc_media_thumb_common.h51
-rw-r--r--TC/utc/utc_thumbnail_request_from_db_func.c85
-rw-r--r--TC/utc/utc_thumbnail_request_from_db_func.h51
-rw-r--r--TC/utc/utc_thumbnail_request_save_to_file_func.c90
-rw-r--r--TC/utc/utc_thumbnail_request_save_to_file_func.h52
-rwxr-xr-xdebian/changelog331
-rwxr-xr-xdebian/compat1
-rwxr-xr-xdebian/control48
-rwxr-xr-xdebian/copyright15
-rwxr-xr-xdebian/docs1
-rwxr-xr-xdebian/libmedia-thumbnail-dev.install.in2
-rwxr-xr-xdebian/libmedia-thumbnail.install.in1
-rwxr-xr-xdebian/media-thumbnail-server.install.in2
-rwxr-xr-xdebian/rules118
-rw-r--r--packaging/libmedia-thumbnail.spec1
26 files changed, 0 insertions, 1049 deletions
diff --git a/TC/_export_env.sh b/TC/_export_env.sh
deleted file mode 100755
index 56e2167..0000000
--- a/TC/_export_env.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-export ARCH=target
-
-export TET_INSTALL_PATH=/usr/bin/tetware/TETware # tetware root path
-export TET_TARGET_PATH=$TET_INSTALL_PATH/tetware-target # tetware target path
-export PATH=$TET_TARGET_PATH/bin:$PATH
-export LD_LIBRARY_PATH=$TET_TARGET_PATH/lib/tet3:$LD_LIBRARY_PATH
-
-export TET_ROOT=$TET_TARGET_PATH
-
-set $(pwd)
-export TET_SUITE_ROOT=$1
-
-set $(date +%s)
-FILE_NAME_EXTENSION=$1
-
diff --git a/TC/build.sh b/TC/build.sh
deleted file mode 100755
index dc464e7..0000000
--- a/TC/build.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-. ./_export_env.sh # setting environment variables
-
-echo PATH=$PATH
-echo LD_LIBRARY_PATH=$TET_TARGET_PATH/lib/tet3:$LD_LIBRARY_PATH
-echo TET_ROOT=$TET_ROOT
-echo TET_SUITE_ROOT=$TET_SUITE_ROOT
-echo ARCH=$ARCH
-
-RESULT_DIR=results-$ARCH
-HTML_RESULT=$RESULT_DIR/build-tar-result-$FILE_NAME_EXTENSION.html
-JOURNAL_RESULT=$RESULT_DIR/build-tar-result-$FILE_NAME_EXTENSION.journal
-
-mkdir $RESULT_DIR
-
-tcc -c -p ./ # executing tcc, with clean option (-c)
-tcc -b -j $JOURNAL_RESULT -p ./ # executing tcc to build test cases (-b)
-grw -c 3 -f chtml -o $HTML_RESULT $JOURNAL_RESULT # reporting the result
-
diff --git a/TC/execute.sh b/TC/execute.sh
deleted file mode 100755
index 9de8291..0000000
--- a/TC/execute.sh
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-
-export ARCH=target
-
-export TET_INSTALL_PATH=/mnt/nfs/tetware/TETware # path to mount
-export TET_TARGET_PATH=$TET_INSTALL_PATH/tetware-target
-export PATH=$TET_TARGET_PATH/bin:$PATH
-export LD_LIBRARY_PATH=$TET_TARGET_PATH/lib/tet3:$LD_LIBRARY_PATH
-
-export TET_ROOT=$TET_TARGET_PATH
-
-set $(pwd)
-export TET_SUITE_ROOT=$1
-
-set $(date +%s)
-FILE_NAME_EXTENSION=$1
-
-echo PATH=$PATH
-echo LD_LIBRARY_PATH=$LD_LIBRARY_PATH
-echo TET_ROOT=$TET_ROOT
-echo TET_SUITE_ROOT=$TET_SUITE_ROOT
-echo ARCH=$ARCH
-
-RESULT_DIR=results-$ARCH
-HTML_RESULT=$RESULT_DIR/build-tar-result-$FILE_NAME_EXTENSION.html
-JOURNAL_RESULT=$RESULT_DIR/build-tar-result-$FILE_NAME_EXTENSION.journal
-
-mkdir $RESULT_DIR
-
-tcc -e -j $JOURNAL_RESULT -p ./
-grw -c 3 -f chtml -o $HTML_RESULT $JOURNAL_RESULT # reporting the result
-
diff --git a/TC/making_new_tet_scen.py b/TC/making_new_tet_scen.py
deleted file mode 100755
index 6c5b845..0000000
--- a/TC/making_new_tet_scen.py
+++ /dev/null
@@ -1,69 +0,0 @@
-#!/usr/bin/python
-
-#############################################
-# tet_scen auto generator
-#
-# ** argv[1] = TC root
-#############################################
-
-import sys,string,os
-
-
-write_file = open("tet_scen", 'w')
-
-#
-# making new tet_scen
-#
-def making_tet_scen (filename):
- #tmp_list = filename.strip().split('/')
- n_filename = filename.replace(' ', '\\ ')
- #print n_filename
- #new_path = "/"+ sys.argv[1] +"/"+n_filename[2:-6]
- new_path = "/"+n_filename[:-6]
- #print new_path
- file = open(filename, 'r')
- lines = file.readlines()
- for line in lines:
- if len(line.strip()) > 1:
- list = line.strip().split('/')
- #print new_path + list[-1]
- write_file.write("\t"+new_path+list[-1]+"\n")
-
-#
-# usage()
-#
-def usage():
- print(" ")
- print("./making_new_tet_scen.py tc_root")
- print("Put the Test Case's root directory.")
- print("Do not include '/' at the end")
- print(" ")
-
-#
-# main()
-#
-def main():
- if len(sys.argv) < 2:
- usage()
- sys.exit(0)
-
- os.system('find '+ sys.argv[1] +' -name "tslist" > tslist.txt')
-
- #write_file = open("tetscen", w)
- write_file.write("# auto generated tet_scen\n")
- write_file.write("all\n")
- write_file.write("\t\"Starting Full Test Suite\"\n")
-
- for file in open("tslist.txt", 'r'):
- #print file.strip()
- making_tet_scen(file.strip())
-
- write_file.write("\t\"Completed Full Test Suite\"\n")
- write_file.write("# EOF\n")
- write_file.close()
- print(" ")
- print("==============================")
- print("New tet_scen file is made~~~~")
- print("==============================")
- print(" ")
-main()
diff --git a/TC/tet_scen b/TC/tet_scen
deleted file mode 100644
index 2ff9a16..0000000
--- a/TC/tet_scen
+++ /dev/null
@@ -1,6 +0,0 @@
-# auto generated tet_scen
-all
- "Starting Full Test Suite"
- :include:/utc/tslist
- "Completed Full Test Suite"
-# EOF
diff --git a/TC/tetbuild.cfg b/TC/tetbuild.cfg
deleted file mode 100644
index f7eda55..0000000
--- a/TC/tetbuild.cfg
+++ /dev/null
@@ -1,5 +0,0 @@
-TET_OUTPUT_CAPTURE=True # capture option for build operation checking
-TET_BUILD_TOOL=make # build with using make command
-TET_BUILD_FILE=-f Makefile # execution file (Makefile) for build
-TET_API_COMPLIANT=True # use TET API in Test Case ?
-TET_PASS_TC_NAME=True # report passed TC name in Journal file?
diff --git a/TC/tetclean.cfg b/TC/tetclean.cfg
deleted file mode 100644
index 02d7030..0000000
--- a/TC/tetclean.cfg
+++ /dev/null
@@ -1,5 +0,0 @@
-TET_OUTPUT_CAPTURE=True # capture option
-TET_CLEAN_TOOL= make clean # clean tool
-TET_CLEAN_FILE= Makefile # file for clean
-TET_API_COMPLIANT=True # TET API useage
-TET_PASS_TC_NAME=True # showing name , passed TC
diff --git a/TC/tetexec.cfg b/TC/tetexec.cfg
deleted file mode 100644
index ef3e452..0000000
--- a/TC/tetexec.cfg
+++ /dev/null
@@ -1,5 +0,0 @@
-TET_OUTPUT_CAPTURE=True # capturing execution or not
-TET_EXEC_TOOL= # ex) exec : execution tool set up/ Optional
-TET_EXEC_FILE= # ex) exectool : execution file/ Optional
-TET_API_COMPLIANT=True # Test case or Tool usesTET API?
-TET_PASS_TC_NAME=True # showing Passed TC name ?
diff --git a/TC/tslist.txt b/TC/tslist.txt
deleted file mode 100644
index 24c0a1a..0000000
--- a/TC/tslist.txt
+++ /dev/null
@@ -1 +0,0 @@
-utc/tslist
diff --git a/TC/utc/Makefile b/TC/utc/Makefile
deleted file mode 100644
index 5742318..0000000
--- a/TC/utc/Makefile
+++ /dev/null
@@ -1,41 +0,0 @@
-ifeq ($(ARCH),target)
- PKG_CONFIG_PATH=/usr/lib/pkgconfig
- export PKG_CONFIG_PATH
- CC=arm-linux-gcc -Wall
- CXX=arm-linux-g++ -Wall
-else
- PKG_CONFIG_PATH=/usr/lib/pkgconfig
- export PKG_CONFIG_PATH
- CC=gcc -Wall
- CXX=gcc -Wall
-endif
-
-TS1=utc_thumbnail_request_from_db_func
-TS2=utc_thumbnail_request_save_to_file_func
-
-LIBS = `pkg-config --libs media-thumbnail`
-LIBS +=$(TET_ROOT)/lib/tet3/tcm_s.o
-LIBS +=-L$(TET_ROOT)/lib/tet3 -ltcm_s -lapi_s
-
-INCS = -I. `pkg-config --cflags media-thumbnail`
-INCS += -I$(TET_ROOT)/inc/tet3
-INCS += -I/usr/include
-
-CFLAGS = $(INCS)
-CC += $(CFLAGS)
-LDFLAGS = $(LIBS)
-
-all : $(TS1) $(TS2)
-
-$(TS1): $(TS1).c
- $(CC) -o $(TS1) $(TS1).c $(LDFLAGS)
-
-$(TS2): $(TS2).c
- $(CC) -o $(TS2) $(TS2).c $(LDFLAGS)
-
-
-clean:
- rm -rf *~ *.o $(TS1) $(TS2)
-
-
-
diff --git a/TC/utc/tslist b/TC/utc/tslist
deleted file mode 100644
index 825b84b..0000000
--- a/TC/utc/tslist
+++ /dev/null
@@ -1,2 +0,0 @@
-/utc/utc_thumbnail_request_from_db_func
-/utc/utc_thumbnail_request_save_to_file_func
diff --git a/TC/utc/utc_media_thumb_common.h b/TC/utc/utc_media_thumb_common.h
deleted file mode 100644
index 6cc8496..0000000
--- a/TC/utc/utc_media_thumb_common.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * libmedia-thumbnail
- *
- * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
- *
- * Contact: Hyunjun Ko <zzoon.ko@samsung.com>
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-
-/**
-* @file utc_media_thumb_common.h
-* @author
-* @brief This is the implementaion file for the test case of thumbnail service
-
-* @version Initial Creation Version 0.1
-* @date 2010-10-13
-*/
-
-#ifndef __UTS_MEDIA_THUMB_COMMON_H_
-#define __UTS_MEDIA_THUMB_COMMON_H_
-
-#include <media-thumbnail.h>
-#include <tet_api.h>
-
-#define UTC_THUMB_LOG(fmt, args...) tet_printf("[%s(L%d)]:"fmt"\n", __FUNCTION__, __LINE__, ##args)
-#define API_NAME "libmedia-thumbnail"
-
-
-void startup()
-{
-}
-
-void cleanup()
-{
-}
-
-
-#endif //__UTS_MEDIA_THUMB_COMMON_H_
diff --git a/TC/utc/utc_thumbnail_request_from_db_func.c b/TC/utc/utc_thumbnail_request_from_db_func.c
deleted file mode 100644
index 2d5bd15..0000000
--- a/TC/utc/utc_thumbnail_request_from_db_func.c
+++ /dev/null
@@ -1,85 +0,0 @@
-/*
- * libmedia-thumbnail
- *
- * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
- *
- * Contact: Hyunjun Ko <zzoon.ko@samsung.com>
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-/**
-* @file utc_thumbnail_request_from_db_func.c
-* @brief This is a suit of unit test cases to test thumbnail_request_from_db API function
-* @author
-* @version Initial Creation Version 0.1
-* @date 2011-10-13
-*/
-
-#include "utc_thumbnail_request_from_db_func.h"
-
-
-/**
-* @brief This tests int thumbnail_request_from_db() API with valid parameters
-* @par ID utc_thumbnail_request_from_db_func_01
-* @param [in]
-* @return This function returns zero on success, or negative value with error code
-*/
-void utc_thumbnail_request_from_db_func_01()
-{
- int ret = -1;
-
- const char *origin_path = "/opt/media/Images/Wallpapers/Home_default.jpg";
- char thumb_path[1024] = {0,};
-
- ret = thumbnail_request_from_db(origin_path, thumb_path, sizeof(thumb_path));
-
- if (ret < MEDIA_THUMB_ERROR_NONE) {
- UTC_THUMB_LOG( "unable to get thumbnail from thumb-daemon. error code->%d", ret);
- tet_result(TET_FAIL);
- return;
- } else {
- tet_result(TET_PASS);
- }
-
- return;
-}
-
-
-/**
-* @brief This tests int thumbnail_request_from_db() API with invalid parameters
-* @par ID utc_thumbnail_request_from_db_func_02
-* @param [in]
-* @return error code on success
-*/
-void utc_thumbnail_request_from_db_func_02()
-{
- int ret = -1;
-
- const char *origin_path = NULL;
- char thumb_path[1024] = {0,};
-
- ret = thumbnail_request_from_db(origin_path, thumb_path, sizeof(thumb_path));
-
- if (ret < MEDIA_THUMB_ERROR_NONE) {
- UTC_THUMB_LOG("abnormal condition test for null, error code->%d", ret);
- tet_result(TET_PASS);
- } else {
- UTC_THUMB_LOG("Getting thumbnail from thumb-daemon should be failed because the origin_path is NULL");
- tet_result(TET_FAIL);
- }
-
- return ;
-}
-
diff --git a/TC/utc/utc_thumbnail_request_from_db_func.h b/TC/utc/utc_thumbnail_request_from_db_func.h
deleted file mode 100644
index 8443dd8..0000000
--- a/TC/utc/utc_thumbnail_request_from_db_func.h
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * libmedia-thumbnail
- *
- * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
- *
- * Contact: Hyunjun Ko <zzoon.ko@samsung.com>
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-/**
-* @file utc_thumbnail_request_from_db_func.h
-* @author
-* @brief This is the implementaion file for the test case of thumbnail_request_from_db API function
-* @version Initial Creation Version 0.1
-* @date 2011-10-13
-*/
-
-#ifndef __UTS_thumbnail_request_from_db__FUNC_H_
-#define __UTS_thumbnail_request_from_db__FUNC_H_
-
-
-#include "utc_media_thumb_common.h"
-
-/* Initialize TCM data structures */
-void (*tet_startup)() = 0;
-void (*tet_cleanup)() = 0;
-
-void utc_thumbnail_request_from_db_func_01();
-void utc_thumbnail_request_from_db_func_02();
-
-struct tet_testlist tet_testlist[] = {
- {utc_thumbnail_request_from_db_func_01, 1},
- {utc_thumbnail_request_from_db_func_02, 2},
- {NULL, 0}
-};
-
-
-#endif // __UTS_thumbnail_request_from_db__FUNC_H_
-
diff --git a/TC/utc/utc_thumbnail_request_save_to_file_func.c b/TC/utc/utc_thumbnail_request_save_to_file_func.c
deleted file mode 100644
index a9bf6e8..0000000
--- a/TC/utc/utc_thumbnail_request_save_to_file_func.c
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- * libmedia-thumbnail
- *
- * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
- *
- * Contact: Hyunjun Ko <zzoon.ko@samsung.com>
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-/**
-* @file utc_thumbnail_request_save_to_file_func.c
-* @brief This is a suit of unit test cases to test thumbnail_request_save_to_file API function
-* @author
-* @version Initial Creation Version 0.1
-* @date 2011-10-13
-*/
-
-#include "utc_thumbnail_request_save_to_file_func.h"
-
-
-/**
-* @brief This tests int thumbnail_request_save_to_file() API with valid parameters
-* @par ID utc_thumbnail_request_save_to_file_func_01
-* @param [in]
-* @return This function returns zero on success, or negative value with error code
-*/
-void utc_thumbnail_request_save_to_file_func_01()
-{
- int ret = -1;
-
- const char *origin_path = "/opt/media/Images/Wallpapers/Home_default.jpg";
- char thumb_path[255] = { 0, };
- snprintf(thumb_path, sizeof(thumb_path), "/tmp/test_thumb.jpg");
-
- media_thumb_type thumb_type = MEDIA_THUMB_LARGE;
-
- ret = thumbnail_request_save_to_file(origin_path, thumb_type, thumb_path);
-
- if (ret < MEDIA_THUMB_ERROR_NONE) {
- UTC_THUMB_LOG( "unable to save thumbnail file. error code->%d", ret);
- tet_result(TET_FAIL);
- return;
- } else {
- unlink(thumb_path);
- tet_result(TET_PASS);
- }
-
- return;
-}
-
-
-/**
-* @brief This tests int thumbnail_request_save_to_file() API with invalid parameters
-* @par ID utc_thumbnail_request_save_to_file_func_02
-* @param [in]
-* @return error code on success
-*/
-void utc_thumbnail_request_save_to_file_func_02()
-{
- int ret = -1;
-
- const char *origin_path = NULL;
- char thumb_path[255] = { 0, };
-
- media_thumb_type thumb_type = MEDIA_THUMB_LARGE;
-
- ret = thumbnail_request_save_to_file(origin_path, thumb_type, thumb_path);
- if (ret < MEDIA_THUMB_ERROR_NONE) {
- UTC_THUMB_LOG("abnormal condition test for null, error code->%d", ret);
- tet_result(TET_PASS);
- } else {
- UTC_THUMB_LOG("Creating thumbnail file should be failed because the origin_path is NULL");
- tet_result(TET_FAIL);
- }
-
- return ;
-}
-
diff --git a/TC/utc/utc_thumbnail_request_save_to_file_func.h b/TC/utc/utc_thumbnail_request_save_to_file_func.h
deleted file mode 100644
index c0f4389..0000000
--- a/TC/utc/utc_thumbnail_request_save_to_file_func.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * libmedia-thumbnail
- *
- * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
- *
- * Contact: Hyunjun Ko <zzoon.ko@samsung.com>
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- *
- */
-
-
-/**
-* @file utc_thumbnail_request_save_to_file_func.h
-* @author
-* @brief This is the implementaion file for the test case of thumbnail_request_save_to_file API function
-* @version Initial Creation Version 0.1
-* @date 2011-10-13
-*/
-
-#ifndef __UTS_thumbnail_request_save_to_file__FUNC_H_
-#define __UTS_thumbnail_request_save_to_file__FUNC_H_
-
-
-#include "utc_media_thumb_common.h"
-
-/* Initialize TCM data structures */
-void (*tet_startup)() = NULL;
-void (*tet_cleanup)() = NULL;
-
-void utc_thumbnail_request_save_to_file_func_01();
-void utc_thumbnail_request_save_to_file_func_02();
-
-struct tet_testlist tet_testlist[] = {
- {utc_thumbnail_request_save_to_file_func_01, 1},
- {utc_thumbnail_request_save_to_file_func_02, 2},
- {NULL, 0}
-};
-
-
-#endif // __UTS_thumbnail_request_save_to_file__FUNC_H_
-
diff --git a/debian/changelog b/debian/changelog
deleted file mode 100755
index aba5c9e..0000000
--- a/debian/changelog
+++ /dev/null
@@ -1,331 +0,0 @@
-libmedia-thumbnail (0.1.42) unstable; urgency=low
-
- * Change the way to call ecore_evas_init
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.42
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Thu, 2 Aug 2012 18:00:00 +0900
-
-libmedia-thumbnail (0.1.41) unstable; urgency=low
-
- * Fix the issue about fds opened over maximum
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.41
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Wed, 1 Aug 2012 18:00:00 +0900
-
-libmedia-thumbnail (0.1.40) unstable; urgency=low
-
- * Add the api for client to get width and height
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.40
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Tue, 31 Jul 2012 18:00:00 +0900
-
-libmedia-thumbnail (0.1.39) unstable; urgency=low
-
- * Use new media DB
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.39
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Wed, 25 Jul 2012 18:00:00 +0900
-
-libmedia-thumbnail (0.1.38) unstable; urgency=low
-
- * Add to code to handle heynoti power-off
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.38
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Fri, 13 Jul 2012 15:00:00 +0900
-
-libmedia-thumbnail (0.1.35) unstable; urgency=low
-
- * Change DRM apis
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.35
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Tue, 22 May 2012 15:00:00 +0900
-
-libmedia-thumbnail (0.1.34) unstable; urgency=low
-
- * Change the structure of the thumb server to use gmainloop
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.34
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Fri, 13 Apr 2012 15:00:00 +0900
-
-libmedia-thumbnail (0.1.33) unstable; urgency=low
-
- * Fix a bug of the api thumbnail_request_save_to_file
- * Modify rpm packaging file
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.33
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Wed, 28 Mar 2012 14:00:00 +0900
-
-libmedia-thumbnail (0.1.32) unstable; urgency=low
-
- * Fix a bug when getting size of RGB888
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.32
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Fri, 9 Mar 2012 18:00:00 +0900
-
-libmedia-thumbnail (0.1.31) unstable; urgency=low
-
- * Add new api thumbnail_request_extract_all_thumbs
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.31
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Wed, 29 Feb 2012 18:00:00 +0900
-
-libmedia-thumbnail (0.1.30) unstable; urgency=low
-
- * Making db handle static
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.30
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Thu, 16 Feb 2012 14:00:00 +0900
-
-libmedia-thumbnail (0.1.29) unstable; urgency=low
-
- * Change of DB schema in media.db
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.29
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Tue, 31 Jan 2012 17:00:00 +0900
-
-libmedia-thumbnail (0.1.28) unstable; urgency=low
-
- * Remove libmedia-service dependancy
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.28
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Wed, 25 Jan 2012 17:00:00 +0900
-
-libmedia-thumbnail (0.1.27) unstable; urgency=low
-
- * Change according to change of libmedia-service
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.27
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Wed, 18 Jan 2012 17:00:00 +0900
-
-libmedia-thumbnail (0.1.26) unstable; urgency=low
-
- * Change thumbnail policy - Large: 320x240, Small: 160x120
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.26
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Fri, 6 Jan 2012 19:00:00 +0900
-
-libmedia-thumbnail (0.1.25) unstable; urgency=low
-
- * Put COPYING file to md5 directory
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.25
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Tue, 3 Jan 2012 19:00:00 +0900
-
-libmedia-thumbnail (0.1.24) unstable; urgency=low
-
- * Separates md5 codes to another shared object
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.24
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Tue, 3 Jan 2012 18:00:00 +0900
-
-libmedia-thumbnail (0.1.23) unstable; urgency=low
-
- * Packaging
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.23
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Wed, 28 Dec 2011 18:00:00 +0900
-
-libmedia-thumbnail (0.1.22) unstable; urgency=low
-
- * Arrange MD5 algorithm opensource
- * Remove timeout in select for battery
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.22
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Wed, 28 Dec 2011 17:00:00 +0900
-
-libmedia-thumbnail (0.1.21) unstable; urgency=low
-
- * Change the pkg name from libmedia-info to libmedia-service
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.21
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Thu, 8 Dec 2011 15:00:00 +0900
-
-libmedia-thumbnail (0.1.20) unstable; urgency=low
-
- * Code cleanup for opening
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.20
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Mon, 5 Dec 2011 15:00:00 +0900
-
-libmedia-thumbnail (0.1.19) unstable; urgency=low
-
- * Add a parameter thumbnail type to the api thumbnail_request_save_to_file
- * Close the api thumbnail_get_data temporarily
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.19
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Mon, 5 Dec 2011 15:00:00 +0900
-
-libmedia-thumbnail (0.1.18) unstable; urgency=low
-
- * Modify boilerplate
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.18
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Fri, 2 Dec 2011 15:00:00 +0900
-
-libmedia-thumbnail (0.1.17) unstable; urgency=low
-
- * Change the name from thumb-daemon to media-thumbnail-server
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.17
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Thu, 1 Dec 2011 18:00:00 +0900
-
-libmedia-thumbnail (0.1.16) unstable; urgency=low
-
- * Adjust to use thread in thumb-daemon
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.16
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Wed, 30 Nov 2011 18:00:00 +0900
-
-libmedia-thumbnail (0.1.15) unstable; urgency=low
-
- * Add script to start network
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.15
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Tue, 15 Nov 2011 16:00:00 +0900
-
-libmedia-thumbnail (0.1.14) unstable; urgency=low
-
- * Change timeout from 5 to 10
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.14
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Mon, 14 Nov 2011 16:00:00 +0900
-
-libmedia-thumbnail (0.1.13) unstable; urgency=low
-
- * change sequence of booting script
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.13
-
- -- Yong Yeon Kim <yy9875.kim@samsung.com> Sat, 12 Nov 2011 11:05:48 +0900
-
-libmedia-thumbnail (0.1.12) unstable; urgency=low
-
- * change sequence of booting script
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.12
-
- -- Yong Yeon Kim <yy9875.kim@samsung.com> Thu, 10 Nov 2011 15:18:57 +0900
-
-libmedia-thumbnail (0.1.11) unstable; urgency=low
-
- * Fix prevent defects
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.11
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Mon, 7 Nov 2011 18:00:00 +0900
-
-libmedia-thumbnail (0.1.10) unstable; urgency=low
-
- * Changes according to the change in libmedia-info lib
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.10
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Wed, 2 Nov 2011 16:00:00 +0900
-
-libmedia-thumbnail (0.1.9) unstable; urgency=low
-
- * Modify boilerplate
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.9
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Thu, 21 Oct 2011 15:00:00 +0900
-
-libmedia-thumbnail (0.1.8) unstable; urgency=low
-
- * New api thumbnail_request_save_to_file
- * fsync call when writing thumb to file system
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.8
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Thu, 18 Oct 2011 15:00:00 +0900
-
-libmedia-thumbnail (0.1.7) unstable; urgency=low
-
- * Add UTCs
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.7
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Thu, 13 Oct 2011 14:00:00 +0900
-
-libmedia-thumbnail (0.1.6) unstable; urgency=low
-
- * Fix a crash caused by wrong frame data
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.6
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Thu, 13 Oct 2011 12:00:00 +0900
-
-libmedia-thumbnail (0.1.5) unstable; urgency=low
-
- * Fix a build break
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.5
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Mon, 12 Oct 2011 13:00:00 +0900
-
-libmedia-thumbnail (0.1.4) unstable; urgency=low
-
- * Add shell script to invoke thumb-daemon
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.4
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Mon, 12 Oct 2011 12:00:00 +0900
-
-libmedia-thumbnail (0.1.3) unstable; urgency=low
-
- * Enable hibernation callbacks
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.3
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Mon, 12 Oct 2011 12:00:00 +0900
-
-libmedia-thumbnail (0.1.2) unstable; urgency=low
-
- * Modify packaging file
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.2
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Mon, 10 Oct 2011 18:00:00 +0900
-
-libmedia-thumbnail (0.1.1) unstable; urgency=low
-
- * Stabilize.
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.1
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Mon, 10 Oct 2011 17:00:00 +0900
-
-libmedia-thumbnail (0.1.0) unstable; urgency=low
-
- * Initial Release.
- * Git : 165.213.180.234:slp/pkgs/l/libmedia-thumbnail
- * Tag : libmedia-thumbnail_0.1.0
-
- -- Hyunjun Ko <zzoon.ko@samsung.com> Tue, 4 Oct 2011 15:50:00 +0900
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 67f5085..0000000
--- a/debian/control
+++ /dev/null
@@ -1,48 +0,0 @@
-Source: libmedia-thumbnail
-Section: libs
-Priority: extra
-Maintainer: Hyunjun Ko<zzoon.ko@samsung.com>, Byungwook Jang <bw.jang@samsung.com>
-Uploaders: Hyunjun Ko<zzoon.ko@samsung.com>
-Build-Depends: debhelper (>= 5), libglib2.0-dev,
- dlog-dev,
- libmm-fileinfo-dev,
- libmm-utility-dev,
- drm-client-dev,
- libexif-dev,
- libheynoti-dev,
- libevas-dev,
- libecore-dev,
- libaul-1-dev
-Standards-Version: 0.1
-Homepage: N/A
-
-Package: media-thumbnail-server
-Section: utils
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends},
-Description: Media Thumbnail Server.
-
-Package: media-thumbnail-server-dbg
-Section: debug
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends},
-Description: Media Thumbnail Server debug pkg.
-
-Package: libmedia-thumbnail
-Section: libs
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: Media thumbnail service library for multimedia applications.
-
-Package: libmedia-thumbnail-dev
-Section: libdevel
-Architecture: any
-Depends: libmedia-thumbnail (= ${Source-Version}), libmm-fileinfo-dev, libmm-utility-dev, libglib2.0-dev, dlog-dev, drm-client-dev, libevas-dev, libecore-dev, libexif-dev, libaul-1-dev
-Description: Media thumbnail service library for multimedia applications. (development)
-
-Package: libmedia-thumbnail-dbg
-Section: debug
-Architecture: any
-Depends: ${misc:Depends}, libmedia-thumbnail (= ${Source-Version})
-Description: Media thumbnail service library for multimedia applications. (unstripped)
-
diff --git a/debian/copyright b/debian/copyright
deleted file mode 100755
index cfce9f8..0000000
--- a/debian/copyright
+++ /dev/null
@@ -1,15 +0,0 @@
-Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
-
-Contact: Hyunjun Ko <zzoon.ko@samsung.com>
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
-http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
diff --git a/debian/docs b/debian/docs
deleted file mode 100755
index a0f0008..0000000
--- a/debian/docs
+++ /dev/null
@@ -1 +0,0 @@
-CMakeLists.txt
diff --git a/debian/libmedia-thumbnail-dev.install.in b/debian/libmedia-thumbnail-dev.install.in
deleted file mode 100755
index bb9b916..0000000
--- a/debian/libmedia-thumbnail-dev.install.in
+++ /dev/null
@@ -1,2 +0,0 @@
-@PREFIX@/lib/pkgconfig/*
-@PREFIX@/include/*
diff --git a/debian/libmedia-thumbnail.install.in b/debian/libmedia-thumbnail.install.in
deleted file mode 100755
index 636e09d..0000000
--- a/debian/libmedia-thumbnail.install.in
+++ /dev/null
@@ -1 +0,0 @@
-@PREFIX@/lib/libmedia-*.so*
diff --git a/debian/media-thumbnail-server.install.in b/debian/media-thumbnail-server.install.in
deleted file mode 100755
index 8efa1fd..0000000
--- a/debian/media-thumbnail-server.install.in
+++ /dev/null
@@ -1,2 +0,0 @@
-@PREFIX@/bin/media-thumbnail-server
-/etc/*
diff --git a/debian/rules b/debian/rules
deleted file mode 100755
index 50427cf..0000000
--- a/debian/rules
+++ /dev/null
@@ -1,118 +0,0 @@
-#!/usr/bin/make -f
-# -*- makefile -*-
-# Sample debian/rules that uses debhelper.
-# This file was originally written by Joey Hess and Craig Small.
-# As a special exception, when this file is copied by dh-make into a
-# dh-make output file, you may use that output file without restriction.
-# This special exception was added by Craig Small in version 0.37 of dh-make.
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-CFLAGS += -Wall -g
-LDFLAGS +=
-PREFIX ?= /usr
-DATADIR ?= /usr/share
-
-ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
- CFLAGS += -O0 -fPIC
-else
- CFLAGS += -O2 -fPIC
-endif
-
-LDFLAGS += -Wl,--rpath=$(PREFIX)/lib -Wl,--as-needed -Wl,--hash-style=both
-
-CMAKE_BUILD_DIR ?= $(CURDIR)/cmake_build_tmp
-
-configure: configure-stamp
-configure-stamp:
- dh_testdir
- # Add here commands to configure the package.
- mkdir -p $(CMAKE_BUILD_DIR) && cd $(CMAKE_BUILD_DIR) && \
- CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" cmake .. -DCMAKE_INSTALL_PREFIX="$(PREFIX)"
-
- touch configure-stamp
-
-build: build-stamp
-
-build-stamp: configure-stamp
- dh_testdir
-
- # Add here commands to compile the package.
- cd $(CMAKE_BUILD_DIR) && $(MAKE)
-
- for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
- cat $$f > $${f%.in}; \
- sed -i -e "s#@PREFIX@#$(PREFIX)#g" $${f%.in}; \
- sed -i -e "s#@DATADIR@#$(DATADIR)#g" $${f%.in}; \
- done
-
- touch $@
-
-clean:
- dh_testdir
- dh_testroot
- rm -f build-stamp configure-stamp
-
- # Add here commands to clean up after the build process.
- rm -rf $(CMAKE_BUILD_DIR)
-
- for f in `find $(CURDIR)/debian/ -name "*.in"`; do \
- rm -f $${f%.in}; \
- done
-
- dh_clean
-
-install: build
- dh_testdir
- dh_testroot
- dh_clean -k
- dh_installdirs
-
- # Add here commands to install the package into debian/wavplayer.
- cd $(CMAKE_BUILD_DIR) && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
-
- mkdir -p $(CURDIR)/debian/tmp/etc/rc.d/rc5.d/
- ln -s /etc/init.d/thumbsvr $(CURDIR)/debian/tmp/etc/rc.d/rc5.d/S47thumbsvr
- mkdir -p $(CURDIR)/debian/tmp/etc/rc.d/rc3.d/
- ln -s /etc/init.d/thumbsvr $(CURDIR)/debian/tmp/etc/rc.d/rc3.d/S47thumbsvr
-
-
-# Build architecture-independent files here.
-binary-indep: build install
-# We have nothing to do by default.
-
-# Build architecture-dependent files here.
-binary-arch: build install
- dh_testdir
- dh_testroot
- dh_installchangelogs
- dh_installdocs
- dh_installexamples
- dh_install --sourcedir=debian/tmp
-# dh_installmenu
-# dh_installdebconf
-# dh_installlogrotate
-# dh_installemacsen
-# dh_installpam
-# dh_installmime
-# dh_python
-# dh_installinit
-# dh_installcron
-# dh_installinfo
- dh_installman
- dh_link
- dh_strip --dbg-package=libmedia-thumbnail-dbg
- dh_strip --dbg-package=media-thumbnail-server-dbg
- dh_compress
- dh_fixperms
-# dh_perl
- 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/packaging/libmedia-thumbnail.spec b/packaging/libmedia-thumbnail.spec
index 1187fc5..c9c13bd 100644
--- a/packaging/libmedia-thumbnail.spec
+++ b/packaging/libmedia-thumbnail.spec
@@ -1,4 +1,3 @@
-#sbs-git:slp/pkgs/l/libmedia-thumbnail libmedia-thumbnail 0.1.32 a6b6cb2f372f6a8cca44ef50813ad0300d34a9de
Name: libmedia-thumbnail
Summary: Media thumbnail service library for multimedia applications.
Version: 0.1.42