diff --git a/ChangeLog b/ChangeLog index 298df9c..e41f29f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,15 @@ +------------------------------------------------------------------- +Sun Jul 11 19:10:53 CEST 2021 - anaselli@linux.it +- New YMGA_CBTable implementation +- built against new libyui tree. +- 1.2.0 + +------------------------------------------------------------------- Mon Jun 29 19:19:01 CEST 2020 - anaselli@linux.it - Added menubar and new menu items implementation - 1.1.0 +------------------------------------------------------------------- Tue Apr 14 12:12:36 CEST 2020 - anaselli@linux.it - removed deprecated function - 1.0.4 diff --git a/Makefile.cvs b/Makefile.cvs deleted file mode 100644 index 3536d20..0000000 --- a/Makefile.cvs +++ /dev/null @@ -1,23 +0,0 @@ -# -# Makefile.cvs -# - -all: configure - -configure: clean - ./bootstrap.sh ; \ - mkdir build ; \ - cd build ; \ - cmake -DCMAKE_BUILD_TYPE=RELEASE .. - -install: configure - cd build ; \ - make && make install - -reconf: - cd build ; \ - cmake rebuild_cache - -clean: - rm -rf build \ - CMakeLists.txt diff --git a/RPMNAME b/RPMNAME deleted file mode 100644 index 21720e0..0000000 --- a/RPMNAME +++ /dev/null @@ -1 +0,0 @@ -libyui-mga-gtk diff --git a/VERSION.cmake b/VERSION.cmake index d3888e9..7467206 100644 --- a/VERSION.cmake +++ b/VERSION.cmake @@ -1,12 +1,6 @@ SET(VERSION_MAJOR "1") -SET(VERSION_MINOR "1") +SET(VERSION_MINOR "2") SET(VERSION_PATCH "0") SET( VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${GIT_SHA1_VERSION}" ) -##### This is need for the libyui core, ONLY. -##### These will be overridden from exports in LibyuiConfig.cmake -SET( SONAME_MAJOR "0" ) -SET( SONAME_MINOR "0" ) -SET( SONAME_PATCH "0" ) -SET( SONAME "${SONAME_MAJOR}.${SONAME_MINOR}.${SONAME_PATCH}" ) diff --git a/bootstrap.sh b/bootstrap.sh deleted file mode 100755 index 12bc0c9..0000000 --- a/bootstrap.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh -set -e - -prefix="/usr" - -if [ ! -z $1 ] -then - prefix="$1" -fi - -cmake_common="$prefix/share/libyui/buildtools/CMakeLists.common" -cmake_target="./CMakeLists.txt" - -echo "checking for $cmake_common..." - -if [ -f "$cmake_common" ] -then - ln -fs "$cmake_common" "$cmake_target" - echo "OK: linked to `pwd`/$cmake_target." -else - echo " Use must have libyui(-devel) >= 3.0.4 installed" - echo " in \"$prefix\" first !!!" - exit 1 -fi - -exit 0 diff --git a/libyui-mga-gtk.spec b/libyui-mga-gtk.spec deleted file mode 100644 index d4c5f5e..0000000 --- a/libyui-mga-gtk.spec +++ /dev/null @@ -1,87 +0,0 @@ -%define git 5ded95a -%define gitdate 20131106 -%define major 5 -%define libname %mklibname yui %{major}-mga-gtk -%define develname %mklibname -d yui-mga-gtk - -Name: libyui-mga-gtk -Version: 1.0.0 -Release: %mkrel -c git%{gitdate} 1 -Summary: UI abstraction library - Gtk plugin -License: LGPLv2+ -Group: System/Libraries -Url: git@bitbucket.org:_pmat_/libyui-mga-gtk.git -Source0: %{name}-%{version}.tar.bz2 - -BuildRequires: yui-devel -BuildRequires: %{_lib}yui-gtk-devel -BuildRequires: %{_lib}yui-mga-devel -BuildRequires: libgtk+3.0-devel -BuildRequires: cmake -BuildRequires: boost-devel -BuildRequires: doxygen -BuildRequires: texlive -BuildRequires: ghostscript -Requires: libyui -Requires: libyui-mga -Requires: libyui-gtk - -%description -%{summary} - -#----------------------------------------------------------------------- - -%package -n %libname -Summary: %{summary} -Group: System/Libraries -Requires: libyui -Provides: %{name} = %{version}-%{release} - -%description -n %libname -This package contains the library needed to run programs -dynamically linked with libyui-mga-gtk. - -%files -n %libname -%doc COPYING* -%{_libdir}/yui/lib*.so.* - - -#----------------------------------------------------------------------- - -%package -n %develname -Summary: %{summary} header files -Group: Development/Other -Requires: libyui-devel -Requires: %{name} = %{version}-%{release} - - -%description -n %develname -This package provides headers files for libyui-mga-gtk development. - -%files -n %develname -%{_includedir}/yui -%{_libdir}/yui/lib*.so -%{_libdir}/pkgconfig/libyui-mga-gtk.pc -%{_libdir}/cmake/libyui-mga-gtk -%doc %{_docdir}/libyui-mga-gtk%{major} - -#----------------------------------------------------------------------- - -%prep -%setup -q -n %{name}-%{version} -%apply_patches - -%build -./bootstrap.sh -%cmake -DPREFIX=%{_prefix} \ - -DDOC_DIR=%{_docdir} \ - -DLIB_DIR=%{_lib} \ - -DINSTALL_DOCS=yes - - -%make docs - -%install -rm -rf %{buildroot} -%makeinstall_std -C build -find "%{buildroot}" -name "*.la" -delete diff --git a/libyui-mga-gtk.spec.in b/libyui-mga-gtk.spec.in deleted file mode 100644 index e69de29..0000000