pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

lumina: New version 0.8.8 + remove merged patches



Module Name:	pkgsrc-wip
Committed By:	Kamil Rytarowski <n54%gmx.com@localhost>
Pushed By:	kamil
Date:		Sun Feb 28 13:12:54 2016 +0100
Changeset:	91e714587f7e96df3f25400c5acc4691dd3f1be5

Modified Files:
	lumina/Makefile
	lumina/distinfo
Removed Files:
	lumina/patches/patch-libLumina_LuminaOS-NetBSD.cpp
	lumina/patches/patch-libLumina_libLumina.pro

Log Message:
lumina: New version 0.8.8 + remove merged patches

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=91e714587f7e96df3f25400c5acc4691dd3f1be5

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 lumina/Makefile                                    |   2 +-
 lumina/distinfo                                    |  10 +-
 lumina/patches/patch-libLumina_LuminaOS-NetBSD.cpp | 173 ---------------------
 lumina/patches/patch-libLumina_libLumina.pro       |  12 --
 4 files changed, 5 insertions(+), 192 deletions(-)

diffs:
diff --git a/lumina/Makefile b/lumina/Makefile
index b93a9e3..376981b 100644
--- a/lumina/Makefile
+++ b/lumina/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD$
 
-DISTNAME=	lumina-0.8.7
+DISTNAME=	lumina-0.8.8
 CATEGORIES=	x11
 MASTER_SITES=	${MASTER_SITE_GITHUB:=pcbsd/}
 GITHUB_TAG=	v${PKGVERSION_NOREV}-Release
diff --git a/lumina/distinfo b/lumina/distinfo
index 6e4ff73..cb1e15d 100644
--- a/lumina/distinfo
+++ b/lumina/distinfo
@@ -1,8 +1,6 @@
 $NetBSD$
 
-SHA1 (lumina-0.8.7.tar.gz) = 6da814dec7150cc3384d542f10835a7957150423
-RMD160 (lumina-0.8.7.tar.gz) = e74a8e84b7a5b25f6b0e2fdab0f96b476dc60681
-SHA512 (lumina-0.8.7.tar.gz) = edad5accbc1a33621145a3444aa56b7eb50226de96f200d3bdf2a8a0f8ecb58f466324658d6b889ecfbcc3f88f240d14ce945891dac54a31ef2609296deee375
-Size (lumina-0.8.7.tar.gz) = 35755064 bytes
-SHA1 (patch-libLumina_LuminaOS-NetBSD.cpp) = c8db0b69a7f11f0965e43c97d0c294c511d8d832
-SHA1 (patch-libLumina_libLumina.pro) = 503b146b56b542d686145642227061e27ab48354
+SHA1 (lumina-0.8.8.tar.gz) = 20d7e54cd388fe713e25357e6714d17b8297f569
+RMD160 (lumina-0.8.8.tar.gz) = 3e476470178ded86e6ab88a111eb68f2cffe3b65
+SHA512 (lumina-0.8.8.tar.gz) = b6cbc5b17fbf3b442d42e1cf90c4af090ab87f0eb56dd13ea980b62bef5277a2803fe3caca4eeaac471379aec35fbf2e796526db1f0970532fdd0237c93bd0ae
+Size (lumina-0.8.8.tar.gz) = 35770958 bytes
diff --git a/lumina/patches/patch-libLumina_LuminaOS-NetBSD.cpp b/lumina/patches/patch-libLumina_LuminaOS-NetBSD.cpp
deleted file mode 100644
index 58eb1c2..0000000
--- a/lumina/patches/patch-libLumina_LuminaOS-NetBSD.cpp
+++ /dev/null
@@ -1,173 +0,0 @@
-$NetBSD$
-
---- libLumina/LuminaOS-NetBSD.cpp.orig	2015-12-01 04:29:06.000000000 +0000
-+++ libLumina/LuminaOS-NetBSD.cpp
-@@ -0,0 +1,168 @@
-+//===========================================
-+//  Lumina-DE source code
-+//  Copyright (c) 2014, Ken Moore
-+//  Available under the 3-clause BSD license
-+//  See the LICENSE file for full details
-+//===========================================
-+#ifdef __NetBSD__
-+#include "LuminaOS.h"
-+#include <unistd.h>
-+#include <stdio.h> // Needed for BUFSIZ
-+
-+QString LOS::OSName(){ return "NetBSD"; }
-+
-+//OS-specific prefix(s)
-+QString LOS::AppPrefix(){ return "/usr/local/"; } //Prefix for applications
-+QString LOS::SysPrefix(){ return "/usr/"; } //Prefix for system
-+
-+//OS-specific application shortcuts (*.desktop files)
-+QString LOS::ControlPanelShortcut(){ return ""; } //system control panel
-+QString LOS::AppStoreShortcut(){ return ""; } //graphical app/pkg manager
-+QString LOS::QtConfigShortcut(){ return ""; } //qtconfig binary (NOT *.desktop file)
-+	
-+// ==== ExternalDevicePaths() ====
-+QStringList LOS::ExternalDevicePaths(){
-+    //Returns: QStringList[<type>::::<filesystem>::::<path>]
-+      //Note: <type> = [USB, HDRIVE, DVD, SDCARD, UNKNOWN]
-+	
-+  //Not implemented yet
-+  return QStringList();
-+}
-+
-+//Read screen brightness information
-+int LOS::ScreenBrightness(){
-+  //Returns: Screen Brightness as a percentage (0-100, with -1 for errors)
-+  return -1;  //not implemented yet
-+}
-+
-+//Set screen brightness
-+void LOS::setScreenBrightness(int percent){
-+  //not implemented yet
-+}
-+
-+//Read the current volume
-+int LOS::audioVolume(){ 
-+  //Returns: audio volume as a percentage (0-100, with -1 for errors)
-+  return -1; //Not implemented yet
-+}
-+
-+//Set the current volume
-+void LOS::setAudioVolume(int percent){
-+  //not implemented yet
-+}
-+
-+//Change the current volume a set amount (+ or -)
-+void LOS::changeAudioVolume(int percentdiff){
-+  //not implemented yet
-+}
-+
-+//Check if a graphical audio mixer is installed
-+bool LOS::hasMixerUtility(){
-+  return false; //not implemented yet
-+}
-+
-+//Launch the graphical audio mixer utility
-+void LOS::startMixerUtility(){
-+  //not implemented yet
-+}
-+
-+//Check for user system permission (shutdown/restart)
-+bool LOS::userHasShutdownAccess(){
-+  //User needs to be a part of the operator group to be able to run the shutdown command
-+  QStringList groups = LUtils::getCmdOutput("id -Gn").join(" ").split(" ");
-+  return groups.contains("operator");
-+}
-+
-+//Check for whether the system is safe to power off (no updates being perfomed)
-+bool LOS::systemPerformingUpdates(){
-+  return false; //Not implemented yet
-+}
-+
-+//System Shutdown
-+void LOS::systemShutdown(){ //start poweroff sequence
-+  QProcess::startDetached("shutdown -p now");
-+}
-+
-+//System Restart
-+void LOS::systemRestart(){ //start reboot sequence
-+  QProcess::startDetached("shutdown -r now");
-+}
-+
-+//Check for suspend support
-+bool LOS::systemCanSuspend(){
-+  return false;
-+}
-+
-+//Put the system into the suspend state
-+void LOS::systemSuspend(){
-+
-+}
-+
-+//Battery Availability
-+bool LOS::hasBattery(){
-+  return false; //not implemented yet
-+}
-+
-+//Battery Charge Level
-+int LOS::batteryCharge(){ //Returns: percent charge (0-100), anything outside that range is counted as an error
-+  return -1;  //not implemented yet
-+}
-+
-+//Battery Charging State
-+bool LOS::batteryIsCharging(){
-+  return false; //not implemented yet
-+}
-+
-+//Battery Time Remaining
-+int LOS::batterySecondsLeft(){ //Returns: estimated number of seconds remaining
-+  return 0; //not implemented yet
-+}
-+
-+//File Checksums
-+QStringList LOS::Checksums(QStringList filepaths){ //Return: checksum of the input file
-+  //on NetBSD md5(1) has the following layout
-+  //$ md5 DESCR Makefile
-+  //MD5 (DESCR) = 6aaa128cf0466792be6f6d15e4589dfb
-+  //MD5 (Makefile) = 4787f3145bba2a3cc393cdd812c5d18b
-+
-+  QStringList info = LUtils::getCmdOutput("md5 \""+filepaths.join("\" \"")+"\"");
-+  for(int i=0; i<info.length(); i++){
-+    if( !info[i].contains(" = ") ){ info.removeAt(i); i--; }
-+    else{
-+      //Strip out the extra information
-+      info[i] = info[i].section(" = ",1,1);
-+    }
-+  }
-+  return info;
-+}
-+
-+//file system capacity
-+QString LOS::FileSystemCapacity(QString dir) { //Return: percentage capacity as give by the df command
-+  // on NetBSD, df has the following layout:
-+  // $ df /home
-+  // Filesystem   512-blocks       Used      Avail %Cap Mounted on
-+  // /dev/cgd0a     39711132   37140376     585200  98% /home
-+
-+  QStringList mountInfo = LUtils::getCmdOutput("df \"" + dir+"\"");
-+  QString::SectionFlag skipEmpty = QString::SectionSkipEmpty;
-+  //we take the 5th word on the 2 line
-+  QString capacity = mountInfo[1].section(" ",4,4, skipEmpty);
-+  return capacity;
-+}
-+
-+QStringList LOS::CPUTemperatures(){ //Returns: List containing the temperature of any CPU's ("50C" for example)
-+  return QStringList(); //not implemented yet
-+}
-+
-+int LOS::CPUUsagePercent(){ //Returns: Overall percentage of the amount of CPU cycles in use (-1 for errors)
-+  return -1; //not implemented yet
-+}
-+
-+int LOS::MemoryUsagePercent(){
-+  return -1; //not implemented yet
-+}
-+
-+QStringList LOS::DiskUsage(){ //Returns: List of current read/write stats for each device
-+  return QStringList(); //not implemented yet
-+}
-+#endif
diff --git a/lumina/patches/patch-libLumina_libLumina.pro b/lumina/patches/patch-libLumina_libLumina.pro
deleted file mode 100644
index e72a621..0000000
--- a/lumina/patches/patch-libLumina_libLumina.pro
+++ /dev/null
@@ -1,12 +0,0 @@
-$NetBSD$
-
---- libLumina/libLumina.pro.orig	2015-10-23 18:08:10.000000000 +0000
-+++ libLumina/libLumina.pro
-@@ -36,6 +36,7 @@ SOURCES	+= LuminaXDG.cpp \
- 	LuminaSingleApplication.cpp \
- 	LuminaOS-FreeBSD.cpp \
- 	LuminaOS-DragonFly.cpp \
-+	LuminaOS-NetBSD.cpp \
- 	LuminaOS-OpenBSD.cpp \
-         LuminaOS-kFreeBSD.cpp
- #       new OS support can be added here


Home | Main Index | Thread Index | Old Index