Merge pull request #2298 from groni/master
add digikam new kde 5 version
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import kde5
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import cmaketools
|
||||
|
||||
#shelltools.export("HOME", get.workDIR())
|
||||
|
||||
def setup():
|
||||
kde5.configure("-DFORCED_UNBUNDLE=ON \
|
||||
-DWITH_LQR=ON \
|
||||
-DWITH_LENSFUN=OFF \
|
||||
-DWITH_MarbleWidget=ON \
|
||||
-DENABLE_LCMS2=ON \
|
||||
-DDIGIKAMSC_COMPILE_KIPIPLUGINS=ON \
|
||||
-DDIGIKAMSC_USE_PRIVATE_SHAREDLIBS=ON \
|
||||
-DDIGIKAMSC_COMPILE_LIBKGEOMAP=ON \
|
||||
-DDIGIKAMSC_COMPILE_LIBKVKONTAKTE=ON \
|
||||
-DDIGIKAMSC_COMPILE_LIBMEDIAWIKI=ON \
|
||||
-DDIGIKAMSC_COMPILE_LIBKFACE=ON \
|
||||
-DDIGIKAMSC_COMPILE_LIBKIPI=ON ")
|
||||
|
||||
def build():
|
||||
kde5.make()
|
||||
|
||||
def install():
|
||||
kde5.install()
|
||||
|
||||
pisitools.dodoc("COPYING", "COPYING-CMAKE-SCRIPTS", "README.LOCAL", "README", "README.MACOS", "NEWS")
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
diff -up digikam-3.5.0/extra/kipi-plugins/panorama/importwizard/lastpage.cpp.panorama-crasher digikam-3.5.0/extra/kipi-plugins/panorama/importwizard/lastpage.cpp
|
||||
--- digikam-3.5.0/extra/kipi-plugins/panorama/importwizard/lastpage.cpp.panorama-crasher 2013-10-01 08:23:09.000000000 +0200
|
||||
+++ digikam-3.5.0/extra/kipi-plugins/panorama/importwizard/lastpage.cpp 2013-12-12 11:50:14.199493306 +0100
|
||||
@@ -91,11 +91,7 @@ LastPage::LastPage(Manager* const mngr,
|
||||
|
||||
QLabel *fileTemplateLabel = new QLabel(i18n("File name template:"), d->saveSettingsGroupBox);
|
||||
formatVBox->addWidget(fileTemplateLabel);
|
||||
- QString first = d->mngr->itemsList().front().fileName();
|
||||
- QString last = d->mngr->itemsList().back().fileName();
|
||||
-// QString file = "panorama";
|
||||
- QString file = QString("%1-%2").arg(first.left(first.lastIndexOf('.'))).arg(last.left(last.lastIndexOf('.')));
|
||||
- d->fileTemplateKLineEdit = new KLineEdit(file, d->saveSettingsGroupBox);
|
||||
+ d->fileTemplateKLineEdit = new KLineEdit("panorama", d->saveSettingsGroupBox);
|
||||
d->fileTemplateKLineEdit->setToolTip(i18n("Name of the panorama file (without its extension)."));
|
||||
d->fileTemplateKLineEdit->setWhatsThis(i18n("<b>File name template</b>: Set here the base name of the files that "
|
||||
"will be saved. For example, if your template is <i>panorama</i> and if "
|
||||
@@ -146,6 +142,11 @@ LastPage::~LastPage()
|
||||
|
||||
void LastPage::resetTitle()
|
||||
{
|
||||
+ QString first = d->mngr->itemsList().front().fileName();
|
||||
+ QString last = d->mngr->itemsList().back().fileName();
|
||||
+ QString file = QString("%1-%2").arg(first.left(first.lastIndexOf('.'))).arg(last.left(last.lastIndexOf('.')));
|
||||
+ d->fileTemplateKLineEdit->setText(file);
|
||||
+
|
||||
slotTemplateChanged(d->fileTemplateKLineEdit->text());
|
||||
checkFiles();
|
||||
}
|
||||
@@ -0,0 +1,85 @@
|
||||
commit f0400ec7e518e753e0c4ccab4eb2b8b022f91767
|
||||
Author: Gilles Caulier <caulier.gilles@gmail.com>
|
||||
Date: Tue Oct 28 15:58:55 2014 +0100
|
||||
|
||||
apply patch #89156
|
||||
BUGS: 337737
|
||||
FIXED-IN: 4.5.0
|
||||
|
||||
diff --git core/libs/widgets/common/databasewidget.cpp b/libs/widgets/common/databasewidget.cpp
|
||||
index b04355b..858cf40 100644
|
||||
--- core/libs/widgets/common/databasewidget.cpp
|
||||
+++ core/libs/widgets/common/databasewidget.cpp
|
||||
@@ -172,30 +172,21 @@ void DatabaseWidget::setupMainArea()
|
||||
"<p><b>MySQL</b> backend is a more robust solution especially for remote and shared database storage. "
|
||||
"It is also more efficient to manage huge collection sizes. "
|
||||
"Be careful: this one it is still in experimental stage.</p>"));
|
||||
- setDatabaseInputFields(DatabaseParameters::SQLiteDatabaseType());
|
||||
-
|
||||
- // --------------------------------------------------------
|
||||
|
||||
- adjustSize();
|
||||
+ setDatabaseInputFields(DatabaseParameters::SQLiteDatabaseType());
|
||||
|
||||
// --------------------------------------------------------
|
||||
|
||||
- connect(databasePathEdit, SIGNAL(urlSelected(KUrl)),
|
||||
- this, SLOT(slotChangeDatabasePath(KUrl)));
|
||||
-
|
||||
- connect(databasePathEdit, SIGNAL(textChanged(QString)),
|
||||
- this, SLOT(slotDatabasePathEditedDelayed()));
|
||||
-
|
||||
connect(databaseType, SIGNAL(currentIndexChanged(int)),
|
||||
this, SLOT(slotHandleDBTypeIndexChanged(int)));
|
||||
|
||||
+ connect(checkDatabaseConnectionButton, SIGNAL(clicked()),
|
||||
+ this, SLOT(checkDatabaseConnection()));
|
||||
+
|
||||
#ifdef HAVE_INTERNALMYSQL
|
||||
connect(internalServer, SIGNAL(stateChanged(int)),
|
||||
this, SLOT(slotHandleInternalServerCheckbox(int)));
|
||||
#endif // HAVE_INTERNALMYSQL
|
||||
-
|
||||
- connect(checkDatabaseConnectionButton, SIGNAL(clicked()),
|
||||
- this, SLOT(checkDatabaseConnection()));
|
||||
}
|
||||
|
||||
QString DatabaseWidget::currentDatabaseType() const
|
||||
@@ -261,12 +252,24 @@ void DatabaseWidget::setDatabaseInputFields(const QString& currentIndexStr)
|
||||
d->databasePathLabel->setVisible(true);
|
||||
databasePathEdit->setVisible(true);
|
||||
d->expertSettings->setVisible(false);
|
||||
+
|
||||
+ connect(databasePathEdit, SIGNAL(urlSelected(KUrl)),
|
||||
+ this, SLOT(slotChangeDatabasePath(KUrl)));
|
||||
+
|
||||
+ connect(databasePathEdit, SIGNAL(textChanged(QString)),
|
||||
+ this, SLOT(slotDatabasePathEditedDelayed()));
|
||||
}
|
||||
else
|
||||
{
|
||||
d->databasePathLabel->setVisible(false);
|
||||
databasePathEdit->setVisible(false);
|
||||
d->expertSettings->setVisible(true);
|
||||
+
|
||||
+ disconnect(databasePathEdit, SIGNAL(urlSelected(KUrl)),
|
||||
+ this, SLOT(slotChangeDatabasePath(KUrl)));
|
||||
+
|
||||
+ disconnect(databasePathEdit, SIGNAL(textChanged(QString)),
|
||||
+ this, SLOT(slotDatabasePathEditedDelayed()));
|
||||
}
|
||||
|
||||
adjustSize();
|
||||
@@ -355,9 +358,9 @@ void DatabaseWidget::setParametersFromSettings(const ApplicationSettings* const
|
||||
|
||||
password->setText(settings->getDatabasePassword());
|
||||
|
||||
- /* Now set the type according the database type from the settings.
|
||||
- * If no item is found, ignore the setting.
|
||||
- */
|
||||
+ // Now set the type according the database type from the settings.
|
||||
+ // If no item is found, ignore the setting.
|
||||
+
|
||||
for (int i=0; i<databaseType->count(); ++i)
|
||||
{
|
||||
//kDebug(50003) << "Comparing comboboxentry on index ["<< i <<"] [" << databaseType->itemData(i)
|
||||
@@ -0,0 +1,53 @@
|
||||
commit f6945f23e0ed1e11f26e2c7e62b02baa8cfa640e
|
||||
Author: Pino Toscano <pino@kde.org>
|
||||
Date: Tue Oct 14 22:26:19 2014 +0200
|
||||
|
||||
fix libkexiv2 version for AltLangStrEdit::textEdit()
|
||||
|
||||
it is part of current libkexiv2/master only (i.e. post 4.14.x, which
|
||||
is 2.3.x)
|
||||
|
||||
diff --git a/libs/imageproperties/captionedit.cpp b/libs/imageproperties/captionedit.cpp
|
||||
index 88413fc..70bdb6d 100644
|
||||
--- a/libs/imageproperties/captionedit.cpp
|
||||
+++ b/libs/imageproperties/captionedit.cpp
|
||||
@@ -202,7 +202,7 @@ void CaptionEdit::slotAuthorChanged(const QString& text)
|
||||
|
||||
MsgTextEdit* CaptionEdit::textEdit() const
|
||||
{
|
||||
-#if KEXIV2_VERSION >= 0x020302
|
||||
+#if KEXIV2_VERSION >= 0x020400
|
||||
return d->altLangStrEdit->textEdit();
|
||||
#else
|
||||
return 0;
|
||||
diff --git a/libs/imageproperties/imagedescedittab.cpp b/libs/imageproperties/imagedescedittab.cpp
|
||||
index ebfbae1..3d12777 100644
|
||||
--- a/libs/imageproperties/imagedescedittab.cpp
|
||||
+++ b/libs/imageproperties/imagedescedittab.cpp
|
||||
@@ -429,7 +429,7 @@ ImageDescEditTab::ImageDescEditTab(QWidget* const parent)
|
||||
|
||||
// Initialize ---------------------------------------------
|
||||
|
||||
-#if KEXIV2_VERSION >= 0x020302
|
||||
+#if KEXIV2_VERSION >= 0x020400
|
||||
d->titleEdit->textEdit()->installEventFilter(this);
|
||||
d->captionsEdit->textEdit()->installEventFilter(this);
|
||||
#endif
|
||||
@@ -532,7 +532,7 @@ void ImageDescEditTab::setFocusToNewTagEdit()
|
||||
void ImageDescEditTab::setFocusToTitlesEdit()
|
||||
{
|
||||
d->tabWidget->setCurrentIndex(Private::DESCRIPTIONS);
|
||||
-#if KEXIV2_VERSION >= 0x020302
|
||||
+#if KEXIV2_VERSION >= 0x020400
|
||||
d->titleEdit->textEdit()->setFocus();
|
||||
#endif
|
||||
}
|
||||
@@ -540,7 +540,7 @@ void ImageDescEditTab::setFocusToTitlesEdit()
|
||||
void ImageDescEditTab::setFocusToCommentsEdit()
|
||||
{
|
||||
d->tabWidget->setCurrentIndex(Private::DESCRIPTIONS);
|
||||
-#if KEXIV2_VERSION >= 0x020302
|
||||
+#if KEXIV2_VERSION >= 0x020400
|
||||
d->captionsEdit->textEdit()->setFocus();
|
||||
#endif
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
diff -U 3 -H -d -r -N -- digikam-4.6.0/extra/libkface/libkface/CMakeLists.txt digikam-4.6.0.install-libs-dev/extra/libkface/libkface/CMakeLists.txt
|
||||
--- digikam-4.6.0/extra/libkface/libkface/CMakeLists.txt 2014-12-16 08:54:40.000000000 +0100
|
||||
+++ digikam-4.6.0.install-libs-dev/extra/libkface/libkface/CMakeLists.txt 2015-01-03 21:03:21.172580963 +0100
|
||||
@@ -63,9 +63,6 @@
|
||||
install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/database/dbconfig.xml
|
||||
DESTINATION ${DATA_INSTALL_DIR}/libkface/database )
|
||||
|
||||
-# Check if compilation is done through digiKam SC or not. If yes, do not install header files.
|
||||
-if(NOT DIGIKAMSC_COMPILE_LIBKFACE)
|
||||
-
|
||||
install(FILES facedetector.h
|
||||
recognitiondatabase.h
|
||||
identity.h
|
||||
@@ -76,9 +73,7 @@
|
||||
)
|
||||
|
||||
if(NOT WIN32)
|
||||
- configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libkface.pc.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkface.pc)
|
||||
- configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libkface.lsm.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkface.lsm)
|
||||
+ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/templates/libkface.pc.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkface.pc)
|
||||
+ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/templates/libkface.lsm.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkface.lsm)
|
||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libkface.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig )
|
||||
endif()
|
||||
-
|
||||
-endif()
|
||||
diff -U 3 -H -d -r -N -- digikam-4.6.0/extra/libkgeomap/libkgeomap/CMakeLists.txt digikam-4.6.0.install-libs-dev/extra/libkgeomap/libkgeomap/CMakeLists.txt
|
||||
--- digikam-4.6.0/extra/libkgeomap/libkgeomap/CMakeLists.txt 2014-12-16 08:54:40.000000000 +0100
|
||||
+++ digikam-4.6.0.install-libs-dev/extra/libkgeomap/libkgeomap/CMakeLists.txt 2015-01-03 21:03:38.204621741 +0100
|
||||
@@ -73,9 +73,6 @@
|
||||
|
||||
install(TARGETS kgeomap ${INSTALL_TARGETS_DEFAULT_ARGS})
|
||||
|
||||
-# Check if compilation is done through digiKam SC or not. If yes, do not install header files.
|
||||
-if(NOT DIGIKAMSC_COMPILE_LIBKGEOMAP)
|
||||
-
|
||||
install(FILES libkgeomap_export.h
|
||||
abstractmarkertiler.h
|
||||
dragdrophandler.h
|
||||
@@ -94,14 +91,12 @@
|
||||
)
|
||||
|
||||
if(NOT WIN32)
|
||||
- configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libkgeomap.pc.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkgeomap.pc)
|
||||
- configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libkgeomap.lsm.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkgeomap.lsm)
|
||||
+ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/templates/libkgeomap.pc.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkgeomap.pc)
|
||||
+ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/templates/libkgeomap.lsm.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libkgeomap.lsm)
|
||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libkgeomap.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig )
|
||||
endif()
|
||||
|
||||
# Install find cmake script to the system for client applications.
|
||||
|
||||
- install(FILES ${CMAKE_SOURCE_DIR}/cmake/modules/FindKGeoMap.cmake
|
||||
+ install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/../cmake/modules/FindKGeoMap.cmake
|
||||
DESTINATION ${DATA_INSTALL_DIR}/cmake/modules)
|
||||
-
|
||||
-endif()
|
||||
diff -U 3 -H -d -r -N -- digikam-4.6.0/extra/libmediawiki/libmediawiki/CMakeLists.txt digikam-4.6.0.install-libs-dev/extra/libmediawiki/libmediawiki/CMakeLists.txt
|
||||
--- digikam-4.6.0/extra/libmediawiki/libmediawiki/CMakeLists.txt 2014-12-16 08:54:40.000000000 +0100
|
||||
+++ digikam-4.6.0.install-libs-dev/extra/libmediawiki/libmediawiki/CMakeLists.txt 2015-01-03 21:03:05.940544498 +0100
|
||||
@@ -40,9 +40,6 @@
|
||||
|
||||
install(TARGETS mediawiki ${INSTALL_TARGETS_DEFAULT_ARGS})
|
||||
|
||||
-# Check if compilation is done through digiKam SC or not. If yes, do not install header files.
|
||||
-if(NOT DIGIKAMSC_COMPILE_LIBMEDIAWIKI)
|
||||
-
|
||||
install(FILES image.h
|
||||
imageinfo.h
|
||||
mediawiki.h
|
||||
@@ -68,14 +65,12 @@
|
||||
DESTINATION ${INCLUDE_INSTALL_DIR}/libmediawiki COMPONENT Devel)
|
||||
|
||||
if(NOT WIN32)
|
||||
- configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libmediawiki.pc.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libmediawiki.pc)
|
||||
- configure_file(${CMAKE_SOURCE_DIR}/cmake/templates/libmediawiki.lsm.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libmediawiki.lsm)
|
||||
+ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/templates/libmediawiki.pc.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libmediawiki.pc)
|
||||
+ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/../cmake/templates/libmediawiki.lsm.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/libmediawiki.lsm)
|
||||
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libmediawiki.pc DESTINATION ${LIB_INSTALL_DIR}/pkgconfig )
|
||||
endif()
|
||||
|
||||
# Install find cmake script to the system for client applications.
|
||||
|
||||
- install(FILES ${CMAKE_SOURCE_DIR}/cmake/modules/FindMediawiki.cmake
|
||||
+ install(FILES ${CMAKE_CURRENT_SOURCE_DIR}/../cmake/modules/FindMediawiki.cmake
|
||||
DESTINATION ${DATA_INSTALL_DIR}/cmake/modules)
|
||||
-
|
||||
-endif()
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
Index: digikam-1.6.0/cmake/modules/FindCLAPACK.cmake
|
||||
===================================================================
|
||||
--- digikam-1.6.0.orig/cmake/modules/FindCLAPACK.cmake
|
||||
+++ digikam-1.6.0/cmake/modules/FindCLAPACK.cmake
|
||||
@@ -17,11 +17,11 @@ if(CLAPACK_INCLUDE_DIR AND CLAPACK_LIBRA
|
||||
|
||||
else(CLAPACK_INCLUDE_DIR AND CLAPACK_LIBRARY)
|
||||
|
||||
- find_path(CLAPACK_INCLUDE_DIR clapack.h PATHS /usr/include/clapack NO_DEFAULT_PATH)
|
||||
+ find_path(CLAPACK_INCLUDE_DIR NAMES f2c.h PATHS /usr/include/clapack NO_DEFAULT_PATH)
|
||||
if(CLAPACK_INCLUDE_DIR)
|
||||
message(STATUS "Found clapack includes: ${CLAPACK_INCLUDE_DIR}")
|
||||
else(CLAPACK_INCLUDE_DIR)
|
||||
- find_path(CLAPACK_INCLUDE_DIR clapack.h PATHS /usr/include/clapack)
|
||||
+ find_path(CLAPACK_INCLUDE_DIR NAMES f2c.h PATHS /usr/include/clapack)
|
||||
if(CLAPACK_INCLUDE_DIR)
|
||||
message(STATUS "Found clapack includes: ${CLAPACK_INCLUDE_DIR}")
|
||||
endif(CLAPACK_INCLUDE_DIR)
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 296 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 100 KiB |
@@ -0,0 +1,155 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>digikam</Name>
|
||||
<Homepage>http://www.digikam.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<Icon>digikam</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>A digital photo management application for KDE4</Summary>
|
||||
<Description>digikam is an advanced digital photo management application for KDE4, which makes importing and organizing digital photos a "snap". The photos can be organized in albums which can be sorted chronologically, by directory layout or by custom collections.</Description>
|
||||
<Archive sha1sum="3a62f6efdfafc37341626cbf0225cd7adc9d0633" type="tarxz">mirrors://kde/stable/digikam/digikam-5.3.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-sql-mysql</Dependency>
|
||||
<Dependency>qt5-sql-sqlite</Dependency>
|
||||
<Dependency>qt5-sql-postgresql</Dependency>
|
||||
<Dependency>qt5-sql-odbc</Dependency>
|
||||
<Dependency>qt5-svg-devel</Dependency>
|
||||
<Dependency>qt5-xmlpatterns-devel</Dependency>
|
||||
<Dependency>qt5-qdbusviewer</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>qt5-multimedia-devel</Dependency>
|
||||
<Dependency>qt5-webkit-devel</Dependency>
|
||||
<Dependency>kconfig-devel</Dependency>
|
||||
<Dependency>kxmlgui-devel</Dependency>
|
||||
<Dependency>ki18n-devel</Dependency>
|
||||
<Dependency>kwindowsystem-devel</Dependency>
|
||||
<Dependency>kservice-devel</Dependency>
|
||||
<Dependency>solid-devel</Dependency>
|
||||
<Dependency>kcoreaddons-devel</Dependency>
|
||||
<Dependency>knotifyconfig-devel</Dependency>
|
||||
<Dependency>knotifications-devel</Dependency>
|
||||
<Dependency>kbookmarks-devel</Dependency>
|
||||
<Dependency>threadweaver-devel</Dependency>
|
||||
<Dependency>kiconthemes-devel</Dependency>
|
||||
<Dependency>kfilemetadata-devel</Dependency>
|
||||
<Dependency>kdelibs4-support-devel</Dependency>
|
||||
<Dependency>kparts-devel</Dependency>
|
||||
<Dependency>sonnet-devel</Dependency>
|
||||
<Dependency>ktextwidgets-devel</Dependency>
|
||||
<Dependency>kcrash-devel</Dependency>
|
||||
<Dependency>kunitconversion-devel</Dependency>
|
||||
<Dependency>kcalcore-devel</Dependency>
|
||||
<Dependency>akonadi-devel</Dependency>
|
||||
<Dependency>akonadi-contacts-devel</Dependency>
|
||||
<Dependency>karchive-devel</Dependency>
|
||||
<Dependency>kio-devel</Dependency>
|
||||
<Dependency>opencv-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>expat-devel</Dependency>
|
||||
<Dependency>exiv2-libs</Dependency>
|
||||
<Dependency>flex</Dependency>
|
||||
<Dependency>bison</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>libmediawiki-devel</Dependency>
|
||||
<Dependency>libkvkontakte-devel</Dependency>
|
||||
<Dependency>libkipi-devel</Dependency>
|
||||
<Dependency>libksane-devel</Dependency>
|
||||
<Dependency>jasper-devel</Dependency>
|
||||
<Dependency>marble-devel</Dependency>
|
||||
<Dependency>eigen3</Dependency>
|
||||
<Dependency>libgphoto2-devel</Dependency>
|
||||
<Dependency>libgomp-devel</Dependency>
|
||||
<Dependency>liblqr-devel</Dependency>
|
||||
<Dependency>libkface-devel</Dependency>
|
||||
<Dependency>glibc-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>libical-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>doxygen</Dependency>
|
||||
<Dependency>libICE-devel</Dependency>
|
||||
<Dependency>kdoctools-devel</Dependency>
|
||||
<Dependency>qt5-phonon-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>digikam</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>kio</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>tiff</Dependency>
|
||||
<Dependency>expat</Dependency>
|
||||
<Dependency>ki18n</Dependency>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>solid</Dependency>
|
||||
<Dependency>jasper</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>liblqr</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>marble</Dependency>
|
||||
<Dependency>opencv</Dependency>
|
||||
<Dependency>kconfig</Dependency>
|
||||
<Dependency>kxmlgui</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
<Dependency>libkipi</Dependency>
|
||||
<Dependency>karchive</Dependency>
|
||||
<Dependency>kcalcore</Dependency>
|
||||
<Dependency>kservice</Dependency>
|
||||
<Dependency>libksane</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>kcontacts</Dependency>
|
||||
<Dependency>exiv2-libs</Dependency>
|
||||
<Dependency>kbookmarks</Dependency>
|
||||
<Dependency>libgphoto2</Dependency>
|
||||
<Dependency>qt5-webkit</Dependency>
|
||||
<Dependency>kcompletion</Dependency>
|
||||
<Dependency>kcoreaddons</Dependency>
|
||||
<Dependency>kiconthemes</Dependency>
|
||||
<Dependency>libmediawiki</Dependency>
|
||||
<Dependency>threadweaver</Dependency>
|
||||
<Dependency>kfilemetadata</Dependency>
|
||||
<Dependency>knotifyconfig</Dependency>
|
||||
<Dependency>kwindowsystem</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>libkvkontakte</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>kconfigwidgets</Dependency>
|
||||
<Dependency>knotifications</Dependency>
|
||||
<Dependency>kwidgetsaddons</Dependency>
|
||||
<Dependency>qt5-xmlpatterns</Dependency>
|
||||
<Dependency>akonadi-contacts</Dependency>
|
||||
<Dependency>kdelibs4-support</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-1</Date>
|
||||
<Version>5.3.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,19 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>digikam</Name>
|
||||
<Summary xml:lang="tr">KDE4 için bir sayısal fotoğraf yönetim uygulaması</Summary>
|
||||
<Description xml:lang="tr">DigiKam, sayısal fotoğrafların düzenlenmesini kolaylaştıran gelişmiş bir yönetim uygulamasıdır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>digikam-devel</Name>
|
||||
<Summary xml:lang="tr">digikam için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>kipi-plugins</Name>
|
||||
<Summary xml:lang="tr">KDE4 için Kipi(KDE Resim Eklenti Arayüzü) eklentileri</Summary>
|
||||
<Description xml:lang="tr">kipi-plugins, digiKam ve gwenview gibi KDE grafik uygulamaları için Kipi eklentileri içerir.</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
+195
-17
@@ -7749,10 +7749,10 @@
|
||||
<Description xml:lang="en">LibreOffice is an open source, multi-platform office productivity suite. It includes key desktop applications such as a word processor, a spreadsheet application, a presentation creator-viewer, a formula editor and a drawing program, with a user interface and feature set similar to other office suites. Sophisticated and flexible, LibreOffice also works transparently with a variety of file formats, including those of Microsoft Office.</Description>
|
||||
<Description xml:lang="tr">LibreOffice, pek çok farklı işletim sisteminde çalışabilen açık kaynak kodlu bir yazılım projesidir. LibreOffice, kelime işlemci, hesap tablosu, sunum ve çizim programları, formül düzenleyici gibi temel masaüstü ofis uygulamalarını içerir ve alışılmış ofis programlarının özelliklerini sunar. Microsoft Office dosyaları da dahil olmak üzere bilinen ofis dosya formatlarıyla uyumlu çalışır.</Description>
|
||||
<Icon>libreoffice-startcenter</Icon>
|
||||
<Archive type="tarxz" sha1sum="771c4c748a738cdd4107a2a1b9f008700ffcbf28">http://download.documentfoundation.org/libreoffice/src/5.2.0/libreoffice-5.2.0.1.tar.xz</Archive>
|
||||
<Archive type="binary" sha1sum="8cdc115478e3ddaec5842ff3f411b3c2eb557504" target="libreoffice-5.2.0.1/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/5.2.0/libreoffice-help-5.2.0.1.tar.xz</Archive>
|
||||
<Archive type="binary" sha1sum="db1ce96dadd1e2df00f497efdc2c7c7773c0b6a0" target="libreoffice-5.2.0.1/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/5.2.0/libreoffice-dictionaries-5.2.0.1.tar.xz</Archive>
|
||||
<Archive type="binary" sha1sum="9507598f599bb23229aa5beb3488d45bddc446e8" target="libreoffice-5.2.0.1/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/5.2.0/libreoffice-translations-5.2.0.1.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="651eded1d62816d3dddad42a54573c7812d0c764">http://download.documentfoundation.org/libreoffice/src/5.2.3/libreoffice-5.2.3.3.tar.xz</Archive>
|
||||
<Archive type="binary" sha1sum="267db133ad57c737dd3ba0148c714c12238edcb0" target="libreoffice-5.2.3.3/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/5.2.3/libreoffice-help-5.2.3.3.tar.xz</Archive>
|
||||
<Archive type="binary" sha1sum="34eb126e79d0518e70acc1fb1933046a966cf648" target="libreoffice-5.2.3.3/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/5.2.3/libreoffice-dictionaries-5.2.3.3.tar.xz</Archive>
|
||||
<Archive type="binary" sha1sum="4dc7184bddda89a5915e6802ef7101bcd8d4dee1" target="libreoffice-5.2.3.3/external/tarballs/">http://download.documentfoundation.org/libreoffice/src/5.2.3/libreoffice-translations-5.2.3.3.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>ant</Dependency>
|
||||
<Dependency>gperf</Dependency>
|
||||
@@ -7794,9 +7794,6 @@
|
||||
<Dependency>librevenge-devel</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch>make-pyuno-work-with-system-wide-module-install.diff</Patch>
|
||||
</Patches>
|
||||
<SourceURI>office/libreoffice/libreoffice/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
@@ -7858,7 +7855,7 @@
|
||||
<Path fileType="library">/usr/lib/libreoffice/program/</Path>
|
||||
<Path fileType="data">/usr/share/gir-1.0/LOKDocView-0.1.gir</Path>
|
||||
<Path fileType="data">/usr/lib/girepository-1.0/LOKDocView-0.1.typelib</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion/completions</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/lib/libreoffice/program/intro.png" permission="0644" owner="root">libreoffice-splash.png</AdditionalFile>
|
||||
@@ -10378,7 +10375,8 @@
|
||||
<Files>
|
||||
<Path fileType="data">/usr/lib/libreoffice/readmes/*_th</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/autothxt/th</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/*th.xcd</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/*_th.xcd</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/Langpack-th.xcd</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/program/resource/*th.res</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/registry/res/*_th.xcd</Path>
|
||||
<Path fileType="data">/usr/lib/libreoffice/share/config/soffice.cfg/*/ui/res/th.zip</Path>
|
||||
@@ -10636,6 +10634,13 @@
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2016-11-10</Date>
|
||||
<Version>5.2.3.3</Version>
|
||||
<Comment>Release Bump</Comment>
|
||||
<Name>Ayhan Yalçınsoy</Name>
|
||||
<Email>ayhanyalcinsoy@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2016-06-26</Date>
|
||||
<Version>5.2.0.1</Version>
|
||||
@@ -44751,15 +44756,19 @@ thunar-volman is installed and configured properly, and you plug in your digical
|
||||
<Dependency>lame-devel</Dependency>
|
||||
<Dependency>libkcompactdisc-devel</Dependency>
|
||||
<Dependency>libvorbis-devel</Dependency>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>ki18n-devel</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
<Dependency>kconfig-devel</Dependency>
|
||||
<Dependency>kcompletion-devel</Dependency>
|
||||
<Dependency>kcoreaddons-devel</Dependency>
|
||||
<Dependency>kconfigwidgets-devel</Dependency>
|
||||
<Dependency>kdesignerplugin</Dependency>
|
||||
<Dependency>kemoticons-devel</Dependency>
|
||||
<Dependency>kitemmodels-devel</Dependency>
|
||||
<Dependency>kinit-devel</Dependency>
|
||||
<Dependency>kunitconversion-devel</Dependency>
|
||||
<Dependency>libkcddb</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>desktop/kde/applications/audiocd-kio/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
@@ -44782,6 +44791,7 @@ thunar-volman is installed and configured properly, and you plug in your digical
|
||||
<Dependency>kcoreaddons</Dependency>
|
||||
<Dependency>kconfigwidgets</Dependency>
|
||||
<Dependency>kdelibs4-support</Dependency>
|
||||
<Dependency>libkcddb</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
@@ -44803,7 +44813,7 @@ thunar-volman is installed and configured properly, and you plug in your digical
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-06</Date>
|
||||
<Date>2016-11-09</Date>
|
||||
<Version>16.08.2_20161106</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
@@ -46803,7 +46813,7 @@ thunar-volman is installed and configured properly, and you plug in your digical
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-06</Date>
|
||||
<Date>2016-11-09</Date>
|
||||
<Version>5.0.0_20161106</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
@@ -47990,6 +48000,12 @@ thunar-volman is installed and configured properly, and you plug in your digical
|
||||
<Dependency>ki18n-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>solid-devel</Dependency>
|
||||
<Dependency>kdesignerplugin</Dependency>
|
||||
<Dependency>kdoctools-devel</Dependency>
|
||||
<Dependency>kemoticons-devel</Dependency>
|
||||
<Dependency>kitemmodels-devel</Dependency>
|
||||
<Dependency>kinit-devel</Dependency>
|
||||
<Dependency>kunitconversion-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>desktop/kde/applications/libkcompactdisc/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
@@ -48026,7 +48042,7 @@ thunar-volman is installed and configured properly, and you plug in your digical
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-07</Date>
|
||||
<Date>2016-11-09</Date>
|
||||
<Version>16.08.2_20161106</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
@@ -49529,7 +49545,7 @@ thunar-volman is installed and configured properly, and you plug in your digical
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-06</Date>
|
||||
<Date>2016-11-09</Date>
|
||||
<Version>5.0.0_20161106</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
@@ -79142,6 +79158,161 @@ thunar-volman is installed and configured properly, and you plug in your digical
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>digikam</Name>
|
||||
<Homepage>http://www.digikam.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>desktop.kde.graphics</PartOf>
|
||||
<Summary xml:lang="en">A digital photo management application for KDE4</Summary>
|
||||
<Summary xml:lang="tr">KDE4 için bir sayısal fotoğraf yönetim uygulaması</Summary>
|
||||
<Description xml:lang="en">digikam is an advanced digital photo management application for KDE4, which makes importing and organizing digital photos a "snap". The photos can be organized in albums which can be sorted chronologically, by directory layout or by custom collections.</Description>
|
||||
<Description xml:lang="tr">DigiKam, sayısal fotoğrafların düzenlenmesini kolaylaştıran gelişmiş bir yönetim uygulamasıdır.</Description>
|
||||
<Icon>digikam</Icon>
|
||||
<Archive type="tarxz" sha1sum="3a62f6efdfafc37341626cbf0225cd7adc9d0633">mirrors://kde/stable/digikam/digikam-5.3.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-sql-mysql</Dependency>
|
||||
<Dependency>qt5-sql-sqlite</Dependency>
|
||||
<Dependency>qt5-sql-postgresql</Dependency>
|
||||
<Dependency>qt5-sql-odbc</Dependency>
|
||||
<Dependency>qt5-svg-devel</Dependency>
|
||||
<Dependency>qt5-xmlpatterns-devel</Dependency>
|
||||
<Dependency>qt5-qdbusviewer</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>qt5-multimedia-devel</Dependency>
|
||||
<Dependency>qt5-webkit-devel</Dependency>
|
||||
<Dependency>kconfig-devel</Dependency>
|
||||
<Dependency>kxmlgui-devel</Dependency>
|
||||
<Dependency>ki18n-devel</Dependency>
|
||||
<Dependency>kwindowsystem-devel</Dependency>
|
||||
<Dependency>kservice-devel</Dependency>
|
||||
<Dependency>solid-devel</Dependency>
|
||||
<Dependency>kcoreaddons-devel</Dependency>
|
||||
<Dependency>knotifyconfig-devel</Dependency>
|
||||
<Dependency>knotifications-devel</Dependency>
|
||||
<Dependency>kbookmarks-devel</Dependency>
|
||||
<Dependency>threadweaver-devel</Dependency>
|
||||
<Dependency>kiconthemes-devel</Dependency>
|
||||
<Dependency>kfilemetadata-devel</Dependency>
|
||||
<Dependency>kdelibs4-support-devel</Dependency>
|
||||
<Dependency>kparts-devel</Dependency>
|
||||
<Dependency>sonnet-devel</Dependency>
|
||||
<Dependency>ktextwidgets-devel</Dependency>
|
||||
<Dependency>kcrash-devel</Dependency>
|
||||
<Dependency>kunitconversion-devel</Dependency>
|
||||
<Dependency>kcalcore-devel</Dependency>
|
||||
<Dependency>akonadi-devel</Dependency>
|
||||
<Dependency>akonadi-contacts-devel</Dependency>
|
||||
<Dependency>karchive-devel</Dependency>
|
||||
<Dependency>kio-devel</Dependency>
|
||||
<Dependency>opencv-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>expat-devel</Dependency>
|
||||
<Dependency>exiv2-libs</Dependency>
|
||||
<Dependency>flex</Dependency>
|
||||
<Dependency>bison</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>libmediawiki-devel</Dependency>
|
||||
<Dependency>libkvkontakte-devel</Dependency>
|
||||
<Dependency>libkipi-devel</Dependency>
|
||||
<Dependency>libksane-devel</Dependency>
|
||||
<Dependency>jasper-devel</Dependency>
|
||||
<Dependency>marble-devel</Dependency>
|
||||
<Dependency>eigen3</Dependency>
|
||||
<Dependency>libgphoto2-devel</Dependency>
|
||||
<Dependency>libgomp-devel</Dependency>
|
||||
<Dependency>liblqr-devel</Dependency>
|
||||
<Dependency>libkface-devel</Dependency>
|
||||
<Dependency>glibc-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>libical-devel</Dependency>
|
||||
<Dependency>libXext-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>doxygen</Dependency>
|
||||
<Dependency>libICE-devel</Dependency>
|
||||
<Dependency>kdoctools-devel</Dependency>
|
||||
<Dependency>qt5-phonon-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>desktop/kde/graphics/digikam/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>digikam</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>kio</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>tiff</Dependency>
|
||||
<Dependency>expat</Dependency>
|
||||
<Dependency>ki18n</Dependency>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>solid</Dependency>
|
||||
<Dependency>jasper</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>liblqr</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>marble</Dependency>
|
||||
<Dependency>opencv</Dependency>
|
||||
<Dependency>kconfig</Dependency>
|
||||
<Dependency>kxmlgui</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
<Dependency>libkipi</Dependency>
|
||||
<Dependency>karchive</Dependency>
|
||||
<Dependency>kcalcore</Dependency>
|
||||
<Dependency>kservice</Dependency>
|
||||
<Dependency>libksane</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>kcontacts</Dependency>
|
||||
<Dependency>exiv2-libs</Dependency>
|
||||
<Dependency>kbookmarks</Dependency>
|
||||
<Dependency>libgphoto2</Dependency>
|
||||
<Dependency>qt5-webkit</Dependency>
|
||||
<Dependency>kcompletion</Dependency>
|
||||
<Dependency>kcoreaddons</Dependency>
|
||||
<Dependency>kiconthemes</Dependency>
|
||||
<Dependency>libmediawiki</Dependency>
|
||||
<Dependency>threadweaver</Dependency>
|
||||
<Dependency>kfilemetadata</Dependency>
|
||||
<Dependency>knotifyconfig</Dependency>
|
||||
<Dependency>kwindowsystem</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>libkvkontakte</Dependency>
|
||||
<Dependency>qt5-x11extras</Dependency>
|
||||
<Dependency>kconfigwidgets</Dependency>
|
||||
<Dependency>knotifications</Dependency>
|
||||
<Dependency>kwidgetsaddons</Dependency>
|
||||
<Dependency>qt5-xmlpatterns</Dependency>
|
||||
<Dependency>akonadi-contacts</Dependency>
|
||||
<Dependency>kdelibs4-support</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-11-1</Date>
|
||||
<Version>5.3.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Stefan Gronewold</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>icon-theme-adwaita</Name>
|
||||
@@ -116039,7 +116210,7 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
|
||||
<Summary xml:lang="tr">Çekirdek içinde yer alan ağ trafiği yönlendirme ve trafik kontrol araçları.</Summary>
|
||||
<Description xml:lang="en">Iproute2 is a collection of utilites for controlling TCP/IP networking and traffic control in Linux.</Description>
|
||||
<Description xml:lang="tr">Iproute2 TCP/IP ağları ve trafik kontrolü için araçlar içeren bir koolleksiyondur.</Description>
|
||||
<Archive type="tarxz" sha1sum="68372be70c5c0503196d03913f4b1e201956d1b6">https://www.kernel.org/pub/linux/utils/net/iproute2/iproute2-4.4.0.tar.xz</Archive>
|
||||
<Archive type="tarxz" sha1sum="eba7c753918ddcf8b3890718391fb795f8dd023b">https://www.kernel.org/pub/linux/utils/net/iproute2/iproute2-4.8.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency versionFrom="1.6.0">iptables-devel</Dependency>
|
||||
<Dependency>linux-atm-devel</Dependency>
|
||||
@@ -116059,15 +116230,22 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/sbin</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="library">/lib</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/bash-completion</Path>
|
||||
<Path fileType="data">/var/lib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2016-10-19</Date>
|
||||
<Version>4.8.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2016-06-09</Date>
|
||||
<Version>4.4.0</Version>
|
||||
|
||||
@@ -1 +1 @@
|
||||
b2f0f4fb6c37bd34e4413c0a909d34bc802326fc
|
||||
910fdbc05d21f85b896ebd8535cced9f7eeb74b8
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
d7aab17bb5bd2c30c41333b3a3671b4c12bd4a8f
|
||||
7af5dab6da3c4901b2e41a421233a5ebe5ca91f8
|
||||
Reference in New Issue
Block a user