Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
67398a8d
Kaydet (Commit)
67398a8d
authored
Ara 01, 2016
tarafından
Matúš Kukan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
tdf#90753: AutoInstall setup_native packages
Change-Id: Iecf059b974b996fceb57b04197c7dac9b7c8dd47
üst
a779b5f7
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
39 deletions
+12
-39
Repository.mk
Repository.mk
+5
-0
file_onlineupdate.scp
scp2/source/onlineupdate/file_onlineupdate.scp
+0
-9
module_onlineupdate.scp
scp2/source/onlineupdate/module_onlineupdate.scp
+0
-1
common_brand.scp
scp2/source/ooo/common_brand.scp
+0
-8
Module_setup_native.mk
setup_native/Module_setup_native.mk
+7
-17
Package_scripts.mk
setup_native/Package_scripts.mk
+0
-4
No files found.
Repository.mk
Dosyayı görüntüle @
67398a8d
...
...
@@ -909,6 +909,7 @@ $(eval $(call gb_Helper_register_packages_for_install,brand,\
desktop_branding \
$(if $(CUSTOM_BRAND_DIR),desktop_branding_custom) \
$(if $(and $(filter-out MACOSX WNT,$(OS)),$(filter DESKTOP,$(BUILD_TYPE))),desktop_soffice_sh) \
$(call gb_Helper_optional,DESKTOP,setup_native_packinfo) \
))
ifeq ($(USING_X11), TRUE)
...
...
@@ -937,6 +938,10 @@ $(eval $(call gb_Helper_register_packages_for_install,writer_brand,\
))
endif # USING_X11=TRUE
$(eval $(call gb_Helper_register_packages_for_install,onlineupdate,\
$(if $(ENABLE_ONLINE_UPDATE),$(if $(filter LINUX SOLARIS,$(OS)),setup_native_scripts)) \
))
ifneq ($(DISABLE_PYTHON),TRUE)
$(eval $(call gb_Helper_register_packages_for_install,python, \
pyuno_pythonloader_ini \
...
...
scp2/source/onlineupdate/file_onlineupdate.scp
Dosyayı görüntüle @
67398a8d
...
...
@@ -25,12 +25,3 @@ File gid_File_Share_Registry_Onlineupdate_Xcd
Name = "onlineupdate.xcd";
ComponentCondition="ISCHECKFORPRODUCTUPDATES=1";
End
#if defined LINUX || defined SOLARIS
File gid_File_Bin_UnpackUpdate
BIN_FILE_BODY;
Dir = gid_Brand_Dir_Program;
Name = "unpack_update";
Styles = (PACKED);
End
#endif
scp2/source/onlineupdate/module_onlineupdate.scp
Dosyayı görüntüle @
67398a8d
...
...
@@ -28,6 +28,5 @@ Module gid_Module_Optional_Onlineupdate
Default = YES;
Styles = ();
Files = (auto_onlineupdate_ALL,
gid_File_Bin_UnpackUpdate,
gid_File_Share_Registry_Onlineupdate_Xcd);
End
scp2/source/ooo/common_brand.scp
Dosyayı görüntüle @
67398a8d
...
...
@@ -78,7 +78,6 @@ Module gid_Module_Root_Brand
gid_Brand_File_Share_Xdg_StartCenter,
gid_Brand_File_Share_Xdg_Writer,
gid_Brand_File_Share_Xdg_XsltFilter,
gid_Brand_File_Txt_Package,
gid_License_Txt,
git_License_Odt,
gid_Credits_Odt,
...
...
@@ -520,13 +519,6 @@ File gid_Brand_File_Script_Unopkg
End
#endif
File gid_Brand_File_Txt_Package
TXT_FILE_BODY;
Dir = gid_Brand_Dir_Share_Extensions;
Name = "package.txt";
Styles = (PACKED);
End
File gid_Brand_File_Share_Registry_Cjk_Xcd
TXT_FILE_BODY;
Styles = (PACKED,MAKE_LANG_SPECIFIC);
...
...
setup_native/Module_setup_native.mk
Dosyayı görüntüle @
67398a8d
...
...
@@ -11,25 +11,19 @@ $(eval $(call gb_Module_Module,setup_native))
$(eval $(call gb_Module_add_targets,setup_native,\
$(if $(filter LINUX SOLARIS,$(OS)),Library_getuid) \
$(if $(filter MACOSX,$(OS)),CustomTarget_mac) \
CustomTarget_spell \
$(if $(filter WNT,$(OS)),Package_misc) \
Package_packinfo \
$(if $(filter LINUX SOLARIS,$(OS)), \
CustomTarget_scripts \
$(if $(ENABLE_ONLINE_UPDATE),Package_scripts) \
) \
))
ifeq ($(OS),MACOSX)
$(eval $(call gb_Module_add_targets,setup_native,\
CustomTarget_mac \
))
endif
ifeq ($(OS),WNT)
$(eval $(call gb_Module_add_targets,setup_native,\
Package_misc \
))
endif
ifeq ($(OS)$(COM),WNTMSC)
$(eval $(call gb_Module_add_targets,setup_native,\
Library_instooofiltmsi \
Library_instooofiltmsi \
Library_qslnkmsi \
Library_reg4allmsdoc \
$(if $(DISABLE_ACTIVEX),,Library_regactivex) \
...
...
@@ -52,10 +46,6 @@ $(eval $(call gb_Module_add_targets,setup_native,\
))
endif
$(eval $(call gb_Module_add_targets,setup_native,\
CustomTarget_scripts \
Package_scripts \
))
endif
# vim: set noet sw=4 ts=4:
setup_native/Package_scripts.mk
Dosyayı görüntüle @
67398a8d
...
...
@@ -9,10 +9,6 @@
$(eval $(call gb_Package_Package,setup_native_scripts,$(SRCDIR)/setup_native/scripts))
ifeq ($(ENABLE_ONLINE_UPDATE),TRUE)
ifneq ($(filter LINUX SOLARIS,$(OS)),)
$(eval $(call gb_Package_add_file,setup_native_scripts,$(LIBO_BIN_FOLDER)/unpack_update,unpack_update.sh))
endif
endif
# vim: set noet sw=4 ts=4:
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment