diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2007-11-11 17:36:47 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2007-11-11 17:36:47 +0000 |
commit | 77acda5089ede56540b9df8bd337d627904875be (patch) | |
tree | af76a8c702a8b10de4c739dc09fa704a08092e47 /x11-misc/devilspie | |
parent | alpha/sparc stable wrt #198736 and remove old (diff) | |
download | historical-77acda5089ede56540b9df8bd337d627904875be.tar.gz historical-77acda5089ede56540b9df8bd337d627904875be.tar.bz2 historical-77acda5089ede56540b9df8bd337d627904875be.zip |
remove unused patches
Package-Manager: portage-2.1.3.19
Diffstat (limited to 'x11-misc/devilspie')
-rw-r--r-- | x11-misc/devilspie/Manifest | 12 | ||||
-rw-r--r-- | x11-misc/devilspie/files/SYNTAX-0.16 | 98 | ||||
-rw-r--r-- | x11-misc/devilspie/files/devilspie-0.10-make-check.patch | 34 | ||||
-rw-r--r-- | x11-misc/devilspie/files/devilspie-0.16-README.patch | 13 |
4 files changed, 0 insertions, 157 deletions
diff --git a/x11-misc/devilspie/Manifest b/x11-misc/devilspie/Manifest index f669db5d646f..0c7e9a66e2db 100644 --- a/x11-misc/devilspie/Manifest +++ b/x11-misc/devilspie/Manifest @@ -1,15 +1,3 @@ -AUX SYNTAX-0.16 3766 RMD160 2ce1a567733175fada38ee873d1d82f1a7c6ea88 SHA1 59fc5924a3085db4bb555dcbc4196c7fb4018615 SHA256 68e63ac9d7c9145ab42ddbf8c194735283b4d7a146685028064e78db11c00a47 -MD5 74158f2c00280846138f48a862926e33 files/SYNTAX-0.16 3766 -RMD160 2ce1a567733175fada38ee873d1d82f1a7c6ea88 files/SYNTAX-0.16 3766 -SHA256 68e63ac9d7c9145ab42ddbf8c194735283b4d7a146685028064e78db11c00a47 files/SYNTAX-0.16 3766 -AUX devilspie-0.10-make-check.patch 1700 RMD160 31f95ca5c12fc3b7ff6a9b4cb72930edae73e64c SHA1 b048f5f0136c28a13611fea38860010968552236 SHA256 cacbe44b380be2f769107d9d9969d5e3595feda31990aafc12d3526003f747be -MD5 5db2050971146baa05aaaaf09522cec7 files/devilspie-0.10-make-check.patch 1700 -RMD160 31f95ca5c12fc3b7ff6a9b4cb72930edae73e64c files/devilspie-0.10-make-check.patch 1700 -SHA256 cacbe44b380be2f769107d9d9969d5e3595feda31990aafc12d3526003f747be files/devilspie-0.10-make-check.patch 1700 -AUX devilspie-0.16-README.patch 546 RMD160 316e3d258fe092b121845068ee023c94010bea8e SHA1 433eb54a2603ca9d34437fda7ea0de6d94054018 SHA256 b2c118204b011dec24b8a4bdb1cb3022cfed386fd293d28cf2fc2df45635250a -MD5 4389d496177e6e0323474592a32bd3d8 files/devilspie-0.16-README.patch 546 -RMD160 316e3d258fe092b121845068ee023c94010bea8e files/devilspie-0.16-README.patch 546 -SHA256 b2c118204b011dec24b8a4bdb1cb3022cfed386fd293d28cf2fc2df45635250a files/devilspie-0.16-README.patch 546 DIST devilspie-0.21.tar.gz 192445 RMD160 5e50dc1faa9a0bb2c8965b17928eb9995abda77e SHA1 d45ca85ffda2664dc8efa4dc089b777648583c45 SHA256 c1fca2f8d3045c8fd3b063319517624cd3f46bf6f007437c06bb0c90eae7dbda EBUILD devilspie-0.21.ebuild 903 RMD160 f91e887d46b5ed778aefab96598033f1eadf42e8 SHA1 9838ae11183182f94211d91baa03ec5d34ffe2cb SHA256 bd70c12b5dea6c3ee64fca9daa2d321b99f157e0766f1a72769a9dc987c8af6e MD5 5a9cffc84cc2eb7db1501e992112943f devilspie-0.21.ebuild 903 diff --git a/x11-misc/devilspie/files/SYNTAX-0.16 b/x11-misc/devilspie/files/SYNTAX-0.16 deleted file mode 100644 index f7ec7f7d2710..000000000000 --- a/x11-misc/devilspie/files/SYNTAX-0.16 +++ /dev/null @@ -1,98 +0,0 @@ -Built-ins -========= - -Types: - - "string": A string. - - 1, 2, 3: Integers - - #t, #f: Booleans. - -Boolean operations: - - (and bool*) -> bool: perform a boolean AND of boolean values - - (or bool*) -> bool: perform a boolean OR of boolean values - -Addition, substraction: - - (+ int*) -> int: add integers - - (+ string*) -> string: concat strings - - (- int int*) -> int: subtract integers from the first - -Types casting: - - (cast-int string|int|bool) -> int: cast to an integer value - - (cast-string string|int|bool) -> string: cast to an string value - -Comparison operators: - - (<|>|= int int) -> bool: compare two integers - - (<|>|= string string) -> bool: compare two strings - -Function flow: - - (if bool func) -> type: execute a function if the condition holds - - (if bool func func) -> type: choose what function to execute depending on the - condition - - (begin func func*) -> type: execute a sequence of functions, and return the - result of the last one - - -Logical operations -================== - -This are predicates you can use to test strings, for instance in "if" -conditions. - - - (is string string) -> bool: return #t if the two strings are the same - Example: (if (is (application_name) "XMMS") ...) - - (contains string string) -> bool: return #t if the second string is a - substring of the first one. - Example: (if (contains (application_name) "term") ...) - - (matches string string) -> bool: return #t if the second string is a regular - expression matching the first one. - Example: (if (matches (window_name) "^Character.+") ...) - - -Matchers -======== - -Matchers are functions which return informations about windows. You can for -instance use them in "if" condition to match some particular windows. - - - (window_name) -> string: return the title of the current window - - (application_name) -> string: return the application name of the current - window, as determined by libwnck - - (window_role) -> string: return the role of the current window, as determined - by the WM_WINDOW_ROLE hint - - (window_class) -> string: return the class of the current window - - -Actions -======= - -Actions are the functions you can use to change some window properties. -All actions return booleans (TRUE on success, FALSE on failure). - - - (debug): debugging function - print informations about current window - - (print args*): print all arguments - - (geometry string): set size and/or position of a window. Examples: - (if ... (geometry "600x600")) - (if ... (geometry "+200+200")) - (if ... (geometry "600x600+200+200")) - - (fullscreen): make the current window fullscreen - - (focus): focus the current window - - (center): center position of current window - - (maximize): maximize the current window - - (maximize_vertically): maximize the current window vertically - - (maximize_horizontally): maximize the current window horizontally - - (minimize): minimize the current window - - (shade): shade ("roll up") the current window - - (unshade): unshade ("roll down") the current window - - (close): close the current window - - (pin): pin the current window to all workspaces - - (unpin): unpin the current window from all workspaces - - (set_workspace int): move the window to a specific workspace number, - counting from 1 - - (skip_pager): remove the current window from the pager - - (skip_tasklist): remove the current window from the window list - - (above): set the current window to be above all normal windows - - (below): set the current window to be below all normal windows - - (undecorate): remove the window manager decorations from the current window - - (wintype string): set the window type of the current window. Accepted values - are: "normal", "dialog", "menu", "toolbar", "splashscreen", "utility", - "dock" and "desktop". - diff --git a/x11-misc/devilspie/files/devilspie-0.10-make-check.patch b/x11-misc/devilspie/files/devilspie-0.10-make-check.patch deleted file mode 100644 index e2077f553215..000000000000 --- a/x11-misc/devilspie/files/devilspie-0.10-make-check.patch +++ /dev/null @@ -1,34 +0,0 @@ -diff -urp devilspie-0.10/src/Makefile.am devilspie-0.10-make-check/src/Makefile.am ---- devilspie-0.10/src/Makefile.am 2005-04-29 08:52:02.000000000 +0200 -+++ devilspie-0.10-make-check/src/Makefile.am 2005-06-11 16:45:45.000000000 +0200 -@@ -31,6 +31,8 @@ parser_test_SOURCES = \ - config-parser.c \ - flurb.h \ - flurb.c \ -+ xutils.h \ -+ xutils.c \ - devilspie.h \ - parser-test.c - -diff -urp devilspie-0.10/src/Makefile.in devilspie-0.10-make-check/src/Makefile.in ---- devilspie-0.10/src/Makefile.in 2005-05-04 22:20:30.000000000 +0200 -+++ devilspie-0.10-make-check/src/Makefile.in 2005-06-11 16:52:21.000000000 +0200 -@@ -131,7 +131,7 @@ devilspie_SOURCES = ${BUILT_SOURCES} - doc_generator_SOURCES = ${BUILT_SOURCES} flurb.h flurb.c xutils.h xutils.c doc-generator.c - - --parser_test_SOURCES = ${BUILT_SOURCES} config-parser.c flurb.h flurb.c devilspie.h parser-test.c -+parser_test_SOURCES = ${BUILT_SOURCES} config-parser.c flurb.h xutils.h xutils.c flurb.c devilspie.h parser-test.c - - - INCLUDES = $(WNCK_CFLAGS) -DDEVILSPIE_LOCALEDIR=\""$(datadir)/locale"\" -DDATADIR=\""$(datadir)"\" -DG_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGNOME_DISABLE_DEPRECATED -@@ -186,7 +186,8 @@ devilspie-action-exec.o devilspie-action - devilspie-action-layer.o devilspie-action-opacity.o \ - devilspie-action-resize.o devilspie-action-savegeometry.o \ - devilspie-action-setgeometry.o devilspie-action-setwintype.o \ --devilspie-action-setworkspace.o config-parser.o flurb.o parser-test.o -+devilspie-action-setworkspace.o config-parser.o flurb.o xutils.o \ -+parser-test.o - parser_test_LDADD = $(LDADD) - parser_test_DEPENDENCIES = - parser_test_LDFLAGS = diff --git a/x11-misc/devilspie/files/devilspie-0.16-README.patch b/x11-misc/devilspie/files/devilspie-0.16-README.patch deleted file mode 100644 index b20d4fb9f7d1..000000000000 --- a/x11-misc/devilspie/files/devilspie-0.16-README.patch +++ /dev/null @@ -1,13 +0,0 @@ ---- README.orig 2005-11-11 14:37:49.880121000 +0100 -+++ README 2005-11-11 14:40:09.350121000 +0100 -@@ -76,8 +76,8 @@ - s-expression puts the window on workspace 2, maximised, if the window name - begins with "Character" and has more characters in (note .+ rather than .*). - --I will write more documentation in the future but for now you'll have to look at --the "symbols" array in src/parser.c to see what functions are available. -+For a complete syntax reference of s-expressions, see the SYNTAX file in the -+documentation directory. - - - Running |