Skip to content

Commit

Permalink
Depend on uuid rock
Browse files Browse the repository at this point in the history
Remove vendored uuid lib
  • Loading branch information
jcrd committed Jul 3, 2019
1 parent 0fdcf4e commit 56a7fb6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 211 deletions.
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,3 @@ descriptions of all functions.

awesome-launch is licensed under the GNU General Public License v3.0 or later
(see [LICENSE](LICENSE)).

`uuid.lua` is licensed under the Apache License v2.0.
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
package = "awesome-launch"
version = "0.1.0-1"
version = "0.1.1-1"
source = {
url = "git://github.com/jcrd/awesome-launch",
tag = "v0.1.0",
tag = "v0.1.1",
}
description = {
summary = "AwesomeWM library for launching clients with single instance IDs",
homepage = "https://github.com/jcrd/awesome-launch",
license = "GPL-3.0",
}
dependencies = {
"lua >= 5.1",
"uuid",
}
build = {
type = "builtin",
modules = {
["awesome-launch"] = "init.lua",
["awesome-launch.uuid"] = "uuid.lua",
["awesome-launch.panel"] = "panel.lua",
},
}
2 changes: 1 addition & 1 deletion init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

local awful = require("awful")
local gears = require("gears")
local uuid = require("awesome-launch.uuid")
local uuid = require("uuid")

uuid.seed()

Expand Down
205 changes: 0 additions & 205 deletions uuid.lua

This file was deleted.

0 comments on commit 56a7fb6

Please sign in to comment.