Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: ghc-persistent-devel | Distribution: SUSE Linux Enterprise 15 SP3 |
Version: 2.10.5.2 | Vendor: openSUSE |
Release: bp153.1.19 | Build date: Tue Apr 13 01:25:19 2021 |
Group: Unspecified | Build host: obs-arm-8 |
Size: 25692855 | Source RPM: ghc-persistent-2.10.5.2-bp153.1.19.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://hackage.haskell.org/package/persistent | |
Summary: Haskell persistent library development files |
This package provides the Haskell persistent library development files.
MIT
* Thu Feb 27 2020 psimons@suse.com - Update persistent to version 2.10.5.2. [#]# 2.10.5.2 * [#1041](https://github.com/yesodweb/persistent/pull/1041) * Explicit foreign keys can now reference tables with custom sql name * Add qualified names to the stock classes list. * Fri Feb 07 2020 psimons@suse.com - Update persistent to version 2.10.5.1. [#]# 2.10.5.1 * [#1024](https://github.com/yesodweb/persistent/pull/1024) * Add the ability to do documentation comments in entity definition syntax. Unfortunately, TemplateHaskell cannot add documentation comments, so this can't be used to add Haddocks to entities. * Add Haddock explainers for some of the supported entity syntax in `Database.Persist.Quasi` * Wed Jan 29 2020 psimons@suse.com - Update persistent to version 2.10.5. [#]# 2.10.5 * Add the `EntityWithPrefix` type to allow users to specify a custom prefix for raw SQL queries. [#1018](https://github.com/yesodweb/persistent/pull/1018) * Added Acquire based API to `Database.Persist.Sql` for working with connections/pools in monads which aren't MonadUnliftIO. [#984](https://github.com/yesodweb/persistent/pull/984) * Fri Nov 08 2019 Peter Simons <psimons@suse.com> - Drop obsolete group attributes. * Thu Oct 31 2019 psimons@suse.com - Update persistent to version 2.10.4. [#]# 2.10.4 * Log exceptions when closing a connection fails. See point 1 in [yesod #1635](https://github.com/yesodweb/yesod/issues/1635#issuecomment-547300856). [#978](https://github.com/yesodweb/persistent/pull/978) * Tue Oct 29 2019 psimons@suse.com - Update persistent to version 2.10.3. [#]# 2.10.3 * Added support for GHC 8.8 about MonadFail changes [#976](https://github.com/yesodweb/persistent/pull/976) * Thu Oct 24 2019 psimons@suse.com - Update persistent to version 2.10.2. [#]# 2.10.2 * Added `runMigrationQuiet` and `runMigrationUnsafeQuiet` to `Database.Persist.Sql.Migration` as safer alternatives to `runMigrationSilent`. [#971](https://github.com/yesodweb/persistent/pull/971) This functions as workaround/fix for: [#966](https://github.com/yesodweb/persistent/issues/966), [#948](https://github.com/yesodweb/persistent/issues/948), [#640](https://github.com/yesodweb/persistent/issues/640), and [#474](https://github.com/yesodweb/persistent/issues/474) * Added RawSql instances for 9, 10, 11 and 12-column results. [#961](https://github.com/yesodweb/persistent/pull/961) * Fri Aug 09 2019 psimons@suse.com - Update persistent to version 2.10.1. [#]# 2.10.1 * Added `constraint=` attribute to allow users to specify foreign reference constraint names. * Thu Apr 18 2019 psimons@suse.com - Update persistent to version 2.10.0. [#]# 2.10.0 * Added two type classes `OnlyOneUniqueKey` and `AtLeastOneUniqueKey`. These classes are used as constraints on functions that expect a certain amount of unique keys. They are defined automatically as part of the `persistent-template`'s generation. [#885](https://github.com/yesodweb/persistent/pull/885) * Add the `entityComments` field to the `EntityDef` datatype, and `fieldComments` fields to the `FieldDef` datatype. The QuasiQuoter does not currently know how to add documentation comments to these types, but it can be expanded later. [#865](https://github.com/yesodweb/persistent/pull/865) * Expose the `SqlReadT` and `SqlWriteT` constructors. [#887](https://github.com/yesodweb/persistent/pull/887) * Remove deprecated `Connection` type synonym. Please use `SqlBackend` instead. [#894](https://github.com/yesodweb/persistent/pull/894) * Remove deprecated `SqlPersist` type synonym. Please use `SqlPersistT` instead. [#894](https://github.com/yesodweb/persistent/pull/894) * Alter the type of `connUpsertSql` to take a list of unique definitions. This paves the way for more efficient upsert implementations. [#895](https://github.com/yesodweb/persistent/pull/895) * Mon Apr 08 2019 psimons@suse.com - Update persistent to version 2.9.2. [#]# 2.9.2 * Add documentation for the `Migration` type and some helpers. [#860](https://github.com/yesodweb/persistent/pull/860) * Fri Jan 18 2019 psimons@suse.com - Update persistent to version 2.9.1. [#]# 2.9.1 * Fix [#847](https://github.com/yesodweb/persistent/issues/847): SQL error with `putMany` on Sqlite when Entity has no unique index. * Sun Dec 02 2018 Peter Simons <psimons@suse.com> - Update Cabal build instructions to support http-api-data 0.4.x. * Mon Oct 15 2018 psimons@suse.com - Update persistent to version 2.9.0. [#] Changelog for persistent [#]# 2.9.0 * Added support for SQL isolation levels to via SqlBackend. [#812] * Move `Database.Persist.Sql.Raw.QQ` to a separate `persistent-qq` package [#827](https://github.com/yesodweb/persistent/issues/827) * Fix [832](https://github.com/yesodweb/persistent/issues/832): `repsertMany` now matches `mapM_ (uncurry repsert)` and is atomic for supported sql back-ends. * Wed Jul 18 2018 psimons@suse.com - Cosmetic: replace tabs with blanks, strip trailing white space, and update copyright headers with spec-cleaner. * Mon May 14 2018 psimons@suse.com - Update persistent to version 2.8.2 revision 1. * Added support for `sql=` to the unique constraints quasi-quoter so that users can specify the database names of the constraints. * DRY-ed up and exposed several util functions in `Database.Persist.Sql.Util`. * Upstream-ed `updatePersistValue`, `mkUpdateText`, and `commaSeparated` from `Database.Persist.MySQL`. * De-duplicated `updatePersistValue` from various `Database.Persist.Sql.Orphan.*` modules. * Batching enhancements to reduce db round-trips. * Added `getMany` and `repsertMany` for batched `get` and `repsert`. * Added `putMany` with a default/slow implementation. SqlBackend's that support native UPSERT should override this for batching enhancements. * Updated `insertEntityMany` to replace slow looped usage with batched execution. * See [#770](https://github.com/yesodweb/persistent/pull/770) * Switch from `MonadBaseControl` to `MonadUnliftIO` * Reapplies [#723](https://github.com/yesodweb/persistent/pull/723), which was reverted in version 2.7.3. * Improve error messages when failing to parse database results into Persistent records. [#741](https://github.com/yesodweb/persistent/pull/741) * A handful of `fromPersistField` implementations called `error` instead of returning a `Left Text`. All of the implementations were changed to return `Left`. [#741](https://github.com/yesodweb/persistent/pull/741) * Improve error message when a SQL insert fails with a custom primary key [#757](https://github.com/yesodweb/persistent/pull/757) * Reverts [#723](https://github.com/yesodweb/persistent/pull/723), which generalized functions using the `BackendCompatible` class. These changes were an accidental breaking change. * Recommend the `PersistDbSpecific` docs if someone gets an error about converting from `PersistDbSpecific` * Many of the functions have been generalized using the `BackendCompatible` class. [#723](https://github.com/yesodweb/persistent/pull/723) * This change was an accidental breaking change and was reverted in 2.7.3. * These change will be released in a future version of Persistent with a major version bump. * Add raw sql quasi quoters [#717](https://github.com/yesodweb/persistent/pull/717) * Added an `insertUniqueEntity` function [#718](https://github.com/yesodweb/persistent/pull/718) * Added `BackendCompatible` class [#701](https://github.com/yesodweb/persistent/pull/701) * Thu Aug 03 2017 psimons@suse.com - Updated with latest spec-cleaner version 0.9.8-8-geadfbbf. * Thu Jul 27 2017 psimons@suse.com - Update to version 2.7.0. * Tue Mar 14 2017 psimons@suse.com - Update to version 2.6.1 with cabal2obs. * Fri Sep 30 2016 psimons@suse.com - Update to version 2.6 revision 2 with cabal2obs. * Thu Sep 15 2016 psimons@suse.com - Update to version 2.6 revision 1 with cabal2obs. * Sun Jul 10 2016 psimons@suse.com - Update to version 2.2.4.1 revision 0 with cabal2obs. * Thu Mar 10 2016 mimi.vx@gmail.com - update to 2.2.4.1 * Thu Dec 17 2015 mimi.vx@gmail.com - update to 2.2.4 * Workaround for side-exiting transformers in runSqlConn * Mon Dec 07 2015 mimi.vx@gmail.com - update to 2.2.3 * PersistField instance for Natural * better oracle support in odbc * Thu Nov 19 2015 mimi.vx@gmail.com - initial commit
/usr/lib64/ghc-8.10.4/package.conf.d/persistent-2.10.5.2.conf /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/DeleteCascade.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/DeleteCascade.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/DeleteCascade.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistConfig.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistConfig.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistConfig.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistEntity.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistEntity.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistEntity.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistField.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistField.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistField.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistQuery.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistQuery.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistQuery.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistStore.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistStore.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistStore.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistUnique.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistUnique.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Class/PersistUnique.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Quasi.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Quasi.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Quasi.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Class.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Class.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Class.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Internal.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Internal.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Internal.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Migration.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Migration.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Migration.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Orphan /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Orphan/PersistQuery.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Orphan/PersistQuery.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Orphan/PersistQuery.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Orphan/PersistStore.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Orphan/PersistStore.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Orphan/PersistStore.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Orphan/PersistUnique.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Orphan/PersistUnique.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Orphan/PersistUnique.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Raw.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Raw.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Raw.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Run.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Run.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Run.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Types /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Types.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Types.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Types.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Types/Internal.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Types/Internal.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Types/Internal.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Util.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Util.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Sql/Util.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Types /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Types.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Types.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Types.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Types/Base.dyn_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Types/Base.hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/Database/Persist/Types/Base.p_hi /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/libHSpersistent-2.10.5.2-AYXn3gHSfom5FNCcLM6GqH.a /usr/lib64/ghc-8.10.4/persistent-2.10.5.2/libHSpersistent-2.10.5.2-AYXn3gHSfom5FNCcLM6GqH_p.a /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2 /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/Database-Persist-Class.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/Database-Persist-Quasi.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/Database-Persist-Sql-Types-Internal.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/Database-Persist-Sql-Util.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/Database-Persist-Sql.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/Database-Persist-Types.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/Database-Persist.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-124.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-33.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-42.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-43.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-45.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-47.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-60.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-61.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-62.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-A.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-All.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-B.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-C.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-D.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-E.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-F.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-G.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-H.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-I.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-K.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-L.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-M.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-N.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-O.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-P.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-R.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-S.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-T.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-U.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index-W.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/doc-index.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/haddock-bundle.min.js /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/index.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/linuwial.css /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/meta.json /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/persistent.haddock /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/persistent.txt /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/quick-jump.css /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Class.DeleteCascade.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Class.PersistConfig.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Class.PersistEntity.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Class.PersistField.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Class.PersistQuery.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Class.PersistStore.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Class.PersistUnique.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Class.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Quasi.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Sql.Class.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Sql.Internal.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Sql.Migration.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Sql.Orphan.PersistQuery.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Sql.Orphan.PersistStore.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Sql.Orphan.PersistUnique.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Sql.Raw.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Sql.Run.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Sql.Types.Internal.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Sql.Types.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Sql.Util.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Sql.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Types.Base.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.Types.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/Database.Persist.html /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/highlight.js /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/src/style.css /usr/share/doc/ghc-8.10.4/html/libraries/persistent-2.10.5.2/synopsis.png /usr/share/doc/packages/ghc-persistent-devel /usr/share/doc/packages/ghc-persistent-devel/ChangeLog.md /usr/share/doc/packages/ghc-persistent-devel/README.md
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Jul 9 13:54:43 2024