SHA256
10
0
forked from pool/lua-luasql

12 Commits

Author SHA256 Message Date
29068c5ba6 Accepting request 1222599 from devel:languages:lua
- Switch to _service and download the code from GitHub repo,
  upstream doesn't create releases.
- Update to version 2.6.0+git.1724375068.d60f8b2:
  * Add version history and credits
  * Update fr Documentation
  * Update br Documentation
  * Update US Documentation
  * Minor fixes
  * Fix HTML Characters
  * Update br Documentation
  * Update Fr Documentation
  * Update example
- Enable the test suite.
- Remove already upstreamed luasql-fix-configuration.patch

OBS-URL: https://build.opensuse.org/request/show/1222599
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lua-luasql?expand=0&rev=6
2024-11-08 11:00:40 +00:00
0b35251dd9 Accepting request 1072753 from devel:languages:lua
- Update to 2.6.0:
  - Added read-only mode to SQLite3 and two new methods to MySQL
    fetch.
  - This release also added the library opening functions to
    luasql.h in order to ease the initialization process in C
    applications.
  - Added seek method to MySQL driver and bug-fix on ODBC driver
    number retrieval.
- Clean up luasql-fix-configuration.patch (now on
  gh#lunarmodules/luasql!152).

OBS-URL: https://build.opensuse.org/request/show/1072753
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lua-luasql?expand=0&rev=5
2023-03-18 23:31:05 +00:00
35e62b6f24 - Clean up luasql-fix-configuration.patch (now on
gh#lunarmodules/luasql!152).

OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-luasql?expand=0&rev=10
2023-03-17 21:37:30 +00:00
2883f04e3b - Update to 2.6.0:
- Added read-only mode to SQLite3 and two new methods to MySQL
    fetch.
  - This release also added the library opening functions to
    luasql.h in order to ease the initialization process in C
    applications.
  - Added seek method to MySQL driver and bug-fix on ODBC driver
    number retrieval.
- Clean up luasql-fix-configuration.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-luasql?expand=0&rev=9
2023-03-17 21:30:14 +00:00
7d5c9d2fd7 Accepting request 1072462 from devel:languages:lua
- Change upstream homepage to the current one at Lunar Modules.

OBS-URL: https://build.opensuse.org/request/show/1072462
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lua-luasql?expand=0&rev=4
2023-03-17 16:04:16 +00:00
85ad886091 - Change upstream homepage to the current one at Lunar Modules.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-luasql?expand=0&rev=7
2023-03-16 18:19:10 +00:00
12c39eef84 Accepting request 873528 from devel:languages:lua
OBS-URL: https://build.opensuse.org/request/show/873528
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lua-luasql?expand=0&rev=3
2021-02-18 19:42:22 +00:00
15fb9bd581 Accepting request 873483 from home:gmbr3:Lua
upd

OBS-URL: https://build.opensuse.org/request/show/873483
OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-luasql?expand=0&rev=5
2021-02-18 18:06:36 +00:00
9cb51930c3 Accepting request 819747 from devel:languages:lua
- Add lua54 as new build target

OBS-URL: https://build.opensuse.org/request/show/819747
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lua-luasql?expand=0&rev=2
2020-07-15 12:55:21 +00:00
99ba98d1b8 - Add lua54 as new build target
OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-luasql?expand=0&rev=3
2020-07-06 19:06:22 +00:00
45f5e85c22 Accepting request 655423 from devel:languages:lua
- Upgrade to 2.4.0:
    * Added support in MySQL driver for opening a connection
      based on a Unix socket (thanks to rafis)
    * Added connection ping method (thanks to rafis)
    * Added Makefile for mingw (thanks to watercoldyi)
    * Bug correction on retrieving varchar2 data (thanks to David
      Gao)
- Rewrite to multibuild, standard openSUSE Lua SPEC file.
- Initial build.
- Add luasql-fix-configuration.patch: Clean up building and add rpm
  optflags.

OBS-URL: https://build.opensuse.org/request/show/655423
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/lua-luasql?expand=0&rev=1
2018-12-12 16:26:30 +00:00
f6d5a045b6 osc copypac from project:home:mcepl:work package:lua-luasql revision:13
OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/lua-luasql?expand=0&rev=1
2018-12-05 22:50:08 +00:00
2 changed files with 0 additions and 22 deletions

BIN
luasql-2.6.0.tar.gz (Stored with Git LFS)

Binary file not shown.

View File

@@ -1,19 +0,0 @@
---
config | 7 +++----
1 file changed, 3 insertions(+), 4 deletions(-)
--- a/config
+++ b/config
@@ -46,9 +46,8 @@ DRIVER_LIBS_firebird ?= -L/usr/local/fir
DRIVER_INCS_firebird ?=
# general compilation parameters
-WARN = -Wall -Wmissing-prototypes -Wmissing-declarations -pedantic
+WARN= -fPIC $(OPTFLAGS) -Wmissing-prototypes -Wmissing-declarations -ansi -pedantic
INCS = -I$(LUA_INC)
-DEFS =
-CFLAGS = -O2 -std=gnu99 $(WARN) -fPIC $(DRIVER_INCS) $(INCS) \
- -DLUASQL_VERSION_NUMBER='"$V"' $(DEFS)
+DEFS = -std=gnu99 -fPIC
+CFLAGS=$(WARN) $(DRIVER_INCS) $(INCS) -DLUASQL_VERSION_NUMBER='"$V"' $(DEFS)
CC= gcc